.mainArea-contacts {
    height: auto;
    width: 100%;
    background: url('/img/tt_doodle.png');
    background-size: 400px;
}

.socMedHandleBox{
    display: flex;
    gap: 15px;
}
form {
    padding: 30px;
    box-sizing: border-box;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
    width: 75%;
    margin: 50px auto 50px auto;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    padding: 80px 30px 80px 30px;
}

.formInfoBox {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-bottom: 100px;
}

.formInfoBox h3 {
    font-size: 23px;
}

.formInfoBox p {
    font-size: 19px;
    text-align: center;
    line-height: 33px;
    color: var(--textGray);
}

.formInputBox {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

input{
    height: 70px;
    width: 100%;
    border: 2px solid var(--bg_lite_purple);
    border-radius: 15px;
    padding: 10px;
    box-sizing: border-box;
    background-color: var(--questionGray);
    font-size: 17px;
}

textarea{
    height: 120px;
    width: 100%;
    border: 2px solid var(--bg_lite_purple);
    border-radius: 15px;
    padding: 10px;
    box-sizing: border-box;
    background-color: var(--questionGray);
    font-size: 17px;
}
.submitBtn{
    height: 70px;
    width: 100px;
    border: none;
    border-radius: 15px;
    padding: 10px;
    box-sizing: border-box;
    font-size: 17px;
    color: white;
    background: linear-gradient(90deg, var(--lite_orange), var(--dark_orange));
}



@media screen and (max-width: 492px) {
    form{padding: 60px 12px 60px 12px; width: 95%;}
    .formInputBox{width: 95%;}
    .formInfoBox p {font-size: 14px;line-height: 25px; margin-bottom: 30px;}
}