.form-container {
    position: relative;
    min-width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
}


.form-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    /* height: 100%; */
    max-width: 540px;
    padding: 0 20px;
}

.form-title {
    text-align: center;
    color: white;
    font-size: 20px;
    margin-bottom: 40px;
}

.form-title p {
    font-size: 17px;
    opacity: 0.9;
}

#consultationForm {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group {
    width: 100%;
}

.required {
    max-height: 100px;
    overflow-y: scroll;
    margin-top: 5px;
    width: 100%;
    border: none;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    padding: 10px;
}

.required ul {
    list-style-type: none;
    padding: 0;
    margin: 8px 10px;
    line-height: 22px;
    font-size: 14px;
    /* display: flex;
    flex-direction: column;
    gap: 2px; */
}


.form-group label {
    font-size: 14px;
    color: white;
}

.form-group input,
.form-group textarea {
    margin-top: 5px;
    width: 100%;
    border: none;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    padding: 10px;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    background-color: rgba(155, 225, 93, 0.8);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
    padding: 8px 20px;
}

.submit-btn:hover {
    background-color: rgba(155, 225, 93, 1.1);
}


.formcheckboxWrapper {
}

.formcheckboxContainer {
    color: white;
    white-space: nowrap;
}

.formmodalCheckBox {
    max-width: 13px;
}


/* @media (max-width: 768px) {
    .form-content {
        padding: 20px;
        width: 100%;
    }

    .form-title h1 {
        font-size: 2em;
    }

    .form-title p {
        font-size: 1em;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
    }
    .formmodalCheckBox {
        left: 69px;
    }
} */