p{
    font-family: 'Mazzard H';
    font-size: 16pt;
}
h1,h2,h3{
    font-family: 'Remixa';
}
section{
    overflow-x: hidden;
}
li .active-now{
  color: #e6012a;  
}

.chat-sect{
    min-height: 30vh;
    height: fit-content;
    background-color: #e6012a;
    background-image: url(/images/3-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5em;
    }
.chat-sect h2{
    color: #e8e2c5;
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
}

.chat-sect p{
    text-align: center;
    line-height: 1.5;
    color: #fff;
    max-width: 900px;
    width: 80%;
}
.form{
    min-height: 70vh;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Mazzard H';
    font-size: 16pt;
    padding-top: 2em;
    padding-bottom: 3em;
}
input{
    font-family: 'Mazzard H';
    font-size: 14pt;
}


.form-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    width: 100%;
    max-width: 1000px;
}
form{
    align-items: center;
    text-align: center;
}
form p{
    text-align: left;
}
.options {
    display: flex;
    justify-content: left;
    gap: 10px;
    margin-bottom: 20px;
   }

/* .option {
    padding: 10px 15px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
} */

input[type="checkbox"] {
    display: none;
}

label {
    padding: 15px 25px;
    border-radius: 40px;
    cursor: pointer;
    font-family: 'Mazzard H';
    font-size: 14pt;
    background: #e8e1e1;
    color: #333;
    transition: all 0.3s ease ;
}

input[type="checkbox"]:checked + label {
    background: #e6012a;
    color: white;
}

.input-field {
    width: 100%;
    padding: 15px 25px;
    margin: 10px 0;
    border-radius: 25px;
    border: 1px solid #aaa;
    outline: none;
}

.fixed-size {
    width: 100%;
    height: 150px;
    resize: none;
    font-size: 16pt;
    font-family: 'Mazzard H';
    font-size: 14pt;
    padding: 15px;
    line-height: 2;

  }

.submit-button {
    width: 200px;
    text-align: center;
    justify-self: center;
    padding: 15px 25px;
    background: #e6012a;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Mazzard H';
    font-size: 14pt;
    margin-top: 3em;
    transition: all 0.5s ease;
}
.submit-button:hover {
    background-color: #c40528;
  }




@media only screen and (max-width: 800px) {
    .chat-sect{
   
        background-position: bottom left;
    }
    .options {
        flex-direction: column;
    }
}