/* .contact-page {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: #ffff;
    position: relative;
}
.iconBack{
    position: absolute;
    left: 40px;
    top: 40px;
    cursor: pointer;
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

.contact-page .content {
    margin-top: 146px;
    display: flex;
    flex-direction: column;
    gap: 55px;

}

.title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: black;
    width: 275px;
    display: flex;
    flex-direction: column;
}

.title .answer {
    font-size: 35px;
}

.title .comment {
    font-size: 40px;
    margin-left: 18px;
}

.subTitle {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: black;
    width: 424px;
    font-size: 18px;
    text-align: justify;
}

.paragraph {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: black;
    font-size: 15px;
    font-style: italic;
}

.form-content {
    margin-top: 146px;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.form-content label {
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
}

.form-content input {
    width: 583px;
    height: 63px;
    border-radius: 3px;
}

.form-content input:focus {
    box-shadow: none;
}

.form-content textarea {
    width: 583px;
    height: 172px;
    border-radius: 3px;
}

.form-content textarea:focus {
    box-shadow: none;
}

.form-content .btn-send {
    width: 151px;
    height: 53px;
    background-color: #215d6d;
    color: white;
    border: none;
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 19px;
    line-height: 23px;
    margin-top: 34px;
    align-items: flex-end;
    margin-right: 26px;
} */

.error-message {
    font-size: 14px;
    color: red;
    font-weight: 500;
    margin-top: 5px;
}

/* @media (min-width: 320px) and (max-width: 1024px) {
    .contact-page {
        height: auto;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 20px;
    }
    .iconBack{
        left: 20px;
        top: 20px;
    }

    .contact-page .content {
        margin-top: 60px;
        gap: 13px;

    }

    .title {
        flex-direction: row;
        width: 310px;
    }

    .title .answer {
        font-size: 30px;
    }
    
    .title .comment {
        font-size: 30px;
        margin-left: 0px;
    }
    .subTitle {
        width: 100%;
    }

    .contact-page .form-content {
        margin-top: 20px;
        align-items: flex-start;
    }
    .contact-page .form-group{
        width: 100%;
    }

    .form-content input {
        width: 100%;
        height: 50px;
    }

    .form-content textarea {
        width: 100%;
        height: 80px;
    }
} */