.elementor-1155 .elementor-element.elementor-element-89dfc13{--display:flex;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--padding-top:0px;--padding-bottom:50px;--padding-left:0px;--padding-right:0px;}.elementor-1155 .elementor-element.elementor-element-f5b1227{width:var( --container-widget-width, 48% );max-width:48%;--container-widget-width:48%;--container-widget-flex-grow:0;}/* Start custom CSS for shortcode, class: .elementor-element-f5b1227 *//* Container styling */
#password-lost-form-wrap {
    max-width: 400px;
    margin: 50px auto;
    padding: 30px 25px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    font-family: 'Arial', sans-serif;
}

/* Form legend */
#lostpasswordform fieldset legend {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333333;
}

/* Instruction text */
.somfrp-lost-pass-form-text p {
    font-size: 14px;
    color: #555555;
    margin-bottom: 20px;
}

/* Input field styling */
#somfrp_user_info {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    box-sizing: border-box;
    margin-top: 5px;
    margin-bottom: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#somfrp_user_info:focus {
    border-color: #F96969;
    box-shadow: 0 0 5px rgba(249, 105, 105, 0.5);
    outline: none;
}

/* Error message styling */
.som-password-error-message span {
    color: #fff;
    font-size: 13px;
    display: block;
   
}

/* Reset Password button styling */
#reset-pass-submit {
    background-color: #F96969;
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#reset-pass-submit:hover {
    background-color: #ff7a7a;
    transform: translateY(-2px);
}

#reset-pass-submit:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(249, 105, 105, 0.4);
}



/* Ensure the wrapper stretches */
.somfrp-password-wrapper {
    width: 100%; /* make wrapper full width */
    max-width: 500px; /* optional: set max width */
    margin-bottom: 20px;
    position: relative; /* needed for the eye button */
}

/* Password input styling */
.som-password-input {
    width: 100%; /* input takes full wrapper width */
    padding: 10px 45px 10px 12px; /* extra space on right for eye icon */
    font-size: 14px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    box-sizing: border-box;
}

/* Optional: focus styling */
.som-password-input:focus {
    border-color: #F96969;
    box-shadow: 0 0 5px rgba(249, 105, 105, 0.5);
    outline: none;
}

/* Eye toggle button alignment */
.somfrp-eye-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Eye icon sizes */
.somfrp-eye, .somfrp-eye-off {
    width: 20px;
    height: 20px;
    fill: #999999;
}

/* Toggle visibility icons */
.somfrp-eye-off {
    display: none;
}
.somfrp-eye-toggle.active .somfrp-eye {
    display: none;
}
.somfrp-eye-toggle.active .somfrp-eye-off {
    display: inline;
}
.somfrp-password-wrapper input[type="password"].som-password-input, .somfrp-password-wrapper input[type="text"].som-password-input {
    width: 100%;
}
[type=button]:focus,[type=button]:hover,[type=submit]:focus,[type=submit]:hover,button:focus,button:hover {
     background-color: #fff;
    color: #fff;
    text-decoration: none
}/* End custom CSS */