.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );line-height:var( --e-global-typography-text-line-height );}@media(max-width:1400px){.elementor-widget-image .widget-image-caption{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );}}@media(max-width:1024px){.elementor-widget-image .widget-image-caption{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );}}@media(max-width:767px){.elementor-widget-image .widget-image-caption{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );}}/* Start custom CSS for shortcode, class: .elementor-element-ab37148 *//* 1. Container Styling - Creates the card look */
.gform_wrapper.gf_login_form {
    background-color: #ffffff;
    max-width: 450px; /* Controls the width of the form */
    margin: 40px auto; /* Centers the form */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef2f7;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
}

/* 2. Typography & Labels */
.gform_wrapper.gf_login_form .gfield_label {
    font-weight: 600;
    color: #333333;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}

/* Style the "Required" asterisk/text */
.gform_wrapper.gf_login_form .gfield_required {
    color: #e74c3c;
    margin-left: 4px;
}

/* 3. Input Fields Styling */
.gform_wrapper.gf_login_form input[type="text"],
.gform_wrapper.gf_login_form input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background-color: #fafafa;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Ensures padding doesn't break width */
}

/* Input Focus Effect */
.gform_wrapper.gf_login_form input[type="text"]:focus,
.gform_wrapper.gf_login_form input[type="password"]:focus {
    background-color: #fff;
    border-color: #3498db; /* Change this hex code to match your brand color */
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.15);
    outline: none;
}

/* 4. Spacing between fields */
.gform_wrapper.gf_login_form .gfield {
    margin-bottom: 24px;
}

/* 5. Remember Me Checkbox */
.gform_wrapper.gf_login_form .ginput_container_checkbox {
    display: flex;
    align-items: center;
}

.gform_wrapper.gf_login_form input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    accent-color: #3498db; /* Colors the checkbox */
}

.gform_wrapper.gf_login_form .gfield_checkbox label {
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

/* 6. Submit Button Styling */
.gform_wrapper.gf_login_form .gform_footer {
    margin-top: 30px;
    padding: 0;
    background: none;
}

.gform_wrapper.gf_login_form input[type="submit"] {
    width: 100%;
    padding: 14px 20px;
    background-color: #3498db; /* Button Background Color */
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

/* Button Hover Effect */
.gform_wrapper.gf_login_form input[type="submit"]:hover {
    background-color: #2980b9; /* Darker shade for hover */
}

/* Button Click Effect */
.gform_wrapper.gf_login_form input[type="submit"]:active {
    transform: scale(0.98);
}

/* 7. Footer Links (Register / Lost Password) */
.gf_login_links {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.gf_login_links a {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.gf_login_links a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Remove break tags used in the links section for a cleaner look */
.gf_login_links br {
    display: none;
}

.gf_login_links a:nth-child(2) {
    margin-left: 15px;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .gform_wrapper.gf_login_form {
        margin: 20px 10px;
        padding: 25px;
    }
}/* End custom CSS */