.form_container {
    max-width: 100%;
    font-family: inherit;
}

.entrata-form {
    font-family: "Circular Std";
}

.entrata-form .form_field {
    position: relative;
    margin-bottom: 24px;
}

.entrata-form .field_name_wrap,
.entrata-form .field_phone_wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.entrata-form .form_field_fname,
.entrata-form .form_field_lname,
.entrata-form .form_field_phone {
    width: 100%;
    margin-bottom: 24px;
}

.entrata-form input[type="text"],
.entrata-form input[type="email"],
.entrata-form input[type="tel"],
.entrata-form textarea,
.entrata-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    margin-top: 6px;
    height: auto;
    color: #002b3c;
    min-height: 47px;
    border: 1px solid #dc2626;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 3px;
    padding: 10px 16px;
    width: 100%;
    font-size: 14px;
    line-height: 24px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    outline: 0;
}

.entrata-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    /* background-image: url(../../../../themes/mastertemplate-child/images/Arrow.svg); */
    background-repeat: no-repeat;
    background-position: 98% center;
    background-size: 18px;
    padding-right: 35px;
}

.entrata-form .control-label {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #002b3c;
    font-family: "Circular Std - Book";
    padding-top: 0;
    display: block;
}

.entrata-form .control-label.hide_label {
    display: none;
}

.entrata-form .contact-required-field {
    color: #dc2626;
}

.entrata-form .btns.btn-primary {
    border: 1px solid #e65d55;
    background-color: #e65d55;
    color: #f0f0f4;
    border-radius: 3px;
    padding: 10px 20px;
    box-shadow: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.04em;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.entrata-form .btns.btn-primary:hover {
    background-color: #f0f0f4;
    color: #e65d55;
}

.entrata-form textarea {
    resize: vertical;
    resize: none;
    overflow: auto;
    height: auto;
}

.entrata-form .form_field label.absolute_label {
    position: absolute;
    top: 18px;
    left: 20px;
    pointer-events: none;
}

.form_container form #movein {
    padding-right: 30px;
    background: url(../images/calendar_icon.svg) no-repeat center right 10px / 16px auto;
}
.form_container form select {
    padding-right: 30px;
    background: url(../images/down-icon.svg) no-repeat center right 10px / auto 7px;
}

.form_container .error-invalid-msg{
    color: #CC0000;
    display: block;
    clear: both;
    font-size: 13px;
    line-height: 1.5;
}

.entrata-form .form_disclaimer {
    font-size: 12px;
    line-height: 18px;
    color: #667085;
    margin-top: 16px;
}

.entrata-form .form_disclaimer a {
    color: #2271b1;
    text-decoration: underline;
}

/* Success message styling */
#form-success {
    margin-top: -40px;
    margin-left: -40px;
    margin-bottom: -40px;
    height: 589px;
    width: calc(100% + 80px);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#form-success::before {
    content: " ";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    background-image: url(../../../../themes/mastertemplate-child/images/toile-background-cropped.png);
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;
}

#form-success .ss-msg {
    position: relative;
    max-width: 600px;
    font-size: 18px;
    font-family: "Lato", sans-serif;
    padding: 116px 10%;
    border-radius: 178px;
    box-shadow: 0 0 23px 22px rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.7);
    text-align: center;
}

#form-success .title-sm {
    color: #404580;
    text-transform: uppercase;
    font-family: "Maglite", sans-serif;
    font-size: calc(38px + 37 * ((100vw - 320px) / 1600));
    margin-bottom: 16px;
}

#form-success .txt-desc {
    color: #344054;
    font-size: 16px;
    line-height: 24px;
}

/* Error message styling */
#contact-form-response {
    color: #dc2626;
    font-size: 14px;
    margin-bottom: 16px;
    padding: 12px;
    border: 1px solid #dc2626;
    border-radius: 3px;
    background-color: #FEF2F2;
}

/* Responsive styles */
@media (max-width: 768px) {
    .entrata-form .field_name_wrap,
    .entrata-form .field_phone_wrap {
        flex-direction: column;
        gap: 0;
    }
    
    #form-success {
        margin: 0;
        width: 100%;
        height: auto;
        border-radius: 12px;
    }
    
    #form-success .ss-msg {
        padding: 48px 24px;
        border-radius: 12px;
    }
} 