/* Lost Password Form Styling - Child Theme Override */

/* Body background for lost password page */
body {
    background: #f1f1f1;
}

.woocommerce-ResetPassword.lost_reset_password {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
}

.woocommerce-ResetPassword.lost_reset_password p:first-of-type {
    text-align: center;
    color: #333;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
}

.woocommerce-ResetPassword.lost_reset_password .woocommerce-form-row {
    margin-bottom: 25px;
}

.woocommerce-ResetPassword.lost_reset_password label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
}

.woocommerce-ResetPassword.lost_reset_password input.input-text {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.woocommerce-ResetPassword.lost_reset_password input.input-text:focus {
    outline: none;
    border-color: #f97d13;
    box-shadow: 0 0 0 2px rgba(249, 125, 19, 0.1);
}

.woocommerce-ResetPassword.lost_reset_password button.woocommerce-Button {
    width: 100%;
    background: #f97d13 !important;
    color: #fff !important;
    padding: 15px 20px;
    border: none !important;
    border-radius: 45px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(249, 125, 19, 0.3);
    outline: none !important;
    text-decoration: none !important;
}

.woocommerce-ResetPassword.lost_reset_password button.woocommerce-Button:hover,
.woocommerce-ResetPassword.lost_reset_password button.woocommerce-Button:focus,
.woocommerce-ResetPassword.lost_reset_password button.woocommerce-Button:active {
    background: #6b509a !important;
    color: #ffffff !important;
    border: none !important;
    outline: none !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(107, 80, 154, 0.4);
    transform: translateY(-2px);
}

.customer_main_form.login-ui {
    background: #f1f1f1;
    padding: 40px 0;
}

/* formContent background */
.login_customer_form#formContent {
    background: #f1f1f1;
    border-radius: 8px;
    box-shadow: none !important;
    padding: 0;
}