/* Contact Us */

.contact-us-form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-us-form h1{
    text-align: start;
    gap: 48px;
}

.input-box{
    display: flex;
    width: 100%;
    justify-content: center;
}

.field-group{
    display: flex;
    flex-direction: column;
    margin: 16px;
}

label {
    font-size: 14px;
}

.input {
    width: 240px;
    padding: 16px;
    font-size: 10px;
    border: none;
    border-radius: 33px;
    background: #d0d2d233;
}

.input::placeholder {
    font-family: "Tajawal";
    color: #a7a9ac;
}

.error-txt{
    font-family: "Tajawal";
    font-size: 10px;
    color: #d93025;
    text-align: start;
    display: none;
}

.error .error-txt{
    display: block;
}

.txtarea {
    width: 544px;
    padding: 16px;
    font-size: 10px;
    border: none;
    border-radius: 33px;
    background: #d0d2d233;
    resize: none;
}

.txtarea::placeholder {
    font-family: "Tajawal";
    color: gray;
}

.form-btn{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

button{
    display: flex;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self:stretch;
    border-radius: 32px;
    background: #05ACC8;
    border: none; /* added */
    cursor: pointer; /* added */

    color: #FFF;
    font-family: "Tajawal";
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem; /* 150*/
}

.modal {
    display: none; 
    position: fixed;
    left: 0; 
    top: 0;
    width: 100%; 
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 15% auto; 
    padding: 20px;
    width: 40%;
    border-radius: 5px;
    text-align: center;
}

.close {
    float: right;
    font-size: 25px;
    cursor: pointer;
}

@media (max-width: 649px) {
  .contact-us-form {
    flex-direction: column;
    align-items: stretch; 
  }

  .contact-us-form .input-box,
  .contact-us-form .field-group,
  .contact-us-form .form-btn {
    flex-wrap: wrap;
    width: 100%; 
    box-sizing: border-box;
  }

  .contact-us-form form#form-id .field-group input,
  .contact-us-form form#form-id .field-group textarea {
      width: 100%;
      box-sizing: border-box;
  }
}