/* Password Reset Page Styles */

.lincoln-password-reset-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    padding: 40px 20px;
}

.lincoln-password-reset-box {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(10, 33, 64, 0.08);
    max-width: 480px;
    width: 100%;
    padding: 40px;
}

.lincoln-password-reset-header {
    text-align: center;
    margin-bottom: 32px;
}

.lincoln-logo-link {
    display: inline-block;
    margin-bottom: 24px;
}

.lincoln-logo {
    max-width: 180px;
    height: auto;
}

.lincoln-password-reset-header h2 {
    color: #162441;
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.lincoln-reset-subtitle {
    color: #687694;
    font-size: 15px;
    margin: 0;
    line-height: 1.5;
}

/* Form Styles */
.lincoln-reset-form {
    margin: 0;
}

.lincoln-form-field {
    margin-bottom: 20px;
}

.lincoln-form-field label {
    display: block;
    color: #162441;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.lincoln-form-field .required {
    color: #d51625;
    font-weight: 700;
}

.lincoln-form-field input[type="text"],
.lincoln-form-field input[type="email"],
.lincoln-form-field input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e6e9ef;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.5;
    color: #162441;
    background-color: #ffffff;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.lincoln-form-field input[type="text"]:focus,
.lincoln-form-field input[type="email"]:focus,
.lincoln-form-field input[type="password"]:focus {
    outline: none;
    border-color: #183267;
    box-shadow: 0 0 0 3px rgba(24, 50, 103, 0.1);
}

/* Password Hints */
.lincoln-password-hints {
    background-color: #f6f8fb;
    border: 1px solid #e6e9ef;
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 24px;
}

.lincoln-password-hints p {
    margin: 0;
    color: #687694;
    font-size: 13px;
    line-height: 1.5;
}

/* Submit Button */
.lincoln-reset-form button[type="submit"] {
    width: 100%;
    background-color: #d51625;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    margin-top: 8px;
}

.lincoln-reset-form button[type="submit"]:hover {
    background-color: #b01119;
}

.lincoln-reset-form button[type="submit"]:active {
    transform: translateY(1px);
}

.lincoln-reset-form button[type="submit"]:disabled {
    background-color: #c7c9ce;
    cursor: not-allowed;
}

/* Footer */
.lincoln-reset-footer {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e6e9ef;
    text-align: center;
}

.lincoln-reset-footer p {
    margin: 0;
}

.lincoln-reset-footer a {
    color: #1e3c7b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.lincoln-reset-footer a:hover {
    color: #0a2140;
    text-decoration: underline;
}

/* Success/Error Messages */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    background-color: #f6f8fb;
    border-left: 4px solid #183267;
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 24px;
    color: #162441;
    font-size: 14px;
    line-height: 1.5;
}

.woocommerce-error {
    background-color: #fff0f1;
    border-left-color: #d51625;
    color: #b01119;
}

.woocommerce-message {
    background-color: #f0f9f4;
    border-left-color: #28a745;
    color: #1e7e34;
}

.woocommerce-message::before,
.woocommerce-error::before,
.woocommerce-info::before {
    display: none;
}

/* Responsive */
@media (max-width: 576px) {
    .lincoln-password-reset-container {
        padding: 20px 16px;
    }

    .lincoln-password-reset-box {
        padding: 32px 24px;
    }

    .lincoln-password-reset-header h2 {
        font-size: 24px;
    }

    .lincoln-logo {
        max-width: 160px;
    }

    .lincoln-reset-subtitle {
        font-size: 14px;
    }

    .lincoln-reset-form button[type="submit"] {
        padding: 12px 20px;
        font-size: 15px;
    }
}

/* Password Strength Meter (WooCommerce default) */
.woocommerce-password-strength {
    text-align: right;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
}

.woocommerce-password-strength.strong {
    color: #28a745;
}

.woocommerce-password-strength.good {
    color: #ffc107;
}

.woocommerce-password-strength.short,
.woocommerce-password-strength.bad {
    color: #d51625;
}

/* Loading State */
.lincoln-reset-form.loading button[type="submit"] {
    position: relative;
    color: transparent;
}

.lincoln-reset-form.loading button[type="submit"]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    border: 2px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

