.input-label {
  font-size: 15px;
  font-family: Inter;
  font-weight: 500;
  color: #8e8f96;
  line-height: 15px;
}

.form-input {
  width: 100%;
  border: 0;
  padding: 4px 0 8px 0;
  border-bottom: 2px solid #ccc;
  height: 30px;
  font-size: 14px;
  color: #3c3c3c;
  font-family: Inter;
  font-weight: 500;
}
.form-input::placeholder{
  color: #cccccc;
}
.form-input:focus {
  border: none;
  outline: none;
}

.form-input ~ .focus-border {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--main-color);
  transition: 0.4s;
}
.form-input:focus ~ .focus-border {
  width: 100%;
  transition: 0.4s;
  left: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  background: white;
  color: red;
  padding: 6px 16px;
  border: 2px solid #ccc;
  border-radius: 12px;
  color: #8E8F96;
  cursor: pointer;
  font-family: Inter;
  font-weight: 500;
  font-size: 15px;
}



.contact-form{
  padding: 30px;
  background: #fff;
  box-shadow: 0 3px 9px rgb(0 0 0 / 15%);
  border-radius: 12px;
  border: 1px solid var(--main-color);
}
.form-input-title{
  font-size: 15px;
  font-family: Inter;
  font-weight: 500;
  color: var(--dark-black);
  margin-top: 12px;
}
.contact-us-button{
  padding: 8px 20px;
  font-size: 16px;
  font-family: Inter;
  font-weight: 600;
  color: white;
  background: var(--main-color);
  outline: none;
  border: none;
  border-radius: 12px;
  margin-top: 36px;
  transition: all 0.2s;
  letter-spacing: 0.9px;
}
.contact-us-button:hover{
  color: white;
  background: var(--dark-blue);
}

.dropdown-container{
  height: 52px;
  border-radius: 12px;
  border: 2px solid #ccc;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.02);
  background-color: #fff;
  transition: all 0.5s;
  cursor: pointer;
}
.dropdown-container-active{
  height: 222px;
}
.dropdown-value{
  position: relative;
  height: 50px;
  font-size: 14px;
  font-family: Inter;
  font-weight: 500;
  color: #8E8F96;
  padding: 10px;
}
.dropdown-value-active{
  border-bottom: 1px solid #ccc;
}
.dropdown-container-active > .dropdown-value img{
  transform: rotate(180deg);
}
.dropdown-item{
  padding: 10px;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
  font-family: Inter;
  font-weight: 500;
  color: #A79E9E;
  cursor: pointer;
}
.dropdown-item:hover{
  background: var(--dark-black);
  color: white;
}
.dropdown-item:last-child{
  border-bottom: none;
}
.quantity-dropdown{
  height: 0;
  overflow: hidden;
  transition: all 0.5s;
}
.quantity-dropdown-active{
  height: 200px;
  overflow-x: hidden;
}
.period-dropdown-active{
  height: 179px;
}
.contact-messege-textarea{
  height: 80px;
  width: 100%;
  border: none;
  border-bottom: 2px solid #ccc;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.02);
  outline: none;
  background-color: #fff;
  padding: 8px 0;
  font-size: 14px;
  font-family: Inter;
  font-weight: 500;
  color: #3c3c3c;
}
.contact-messege-textarea::placeholder{
  font-size: 13px;
  color: #3c3c3c;
  font-family: Inter;
  font-weight: 400;
}

@media(max-width: 768px){
  .contact-form{
    padding: 0;
    box-shadow: none;
    border: 0;
  }
  .contact-us-button{
    margin-top: 24px;
  }
}