.wei-forgot-password {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.wei-forgot-password-card {
    width: 100%;
    max-width: 500px;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.wei-forgot-password-card h1 {
    margin: 0 0 12px;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
}

.wei-forgot-password-card p {
    margin: 0 0 25px;
    color: #6b7280;
    text-align: center;
    line-height: 1.6;
}

.wei-forgot-password-card form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wei-forgot-password-card input {
    width: 100%;
    height: 52px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 0 15px;
    font-size: 15px;
    outline: none;
    transition: all .2s ease;
}

.wei-forgot-password-card input:focus {
    border-color: #111827;
}

.wei-forgot-password-card button {
    height: 52px;
    border: 0 !important;
    border-radius: 8px !important;
    background: #ff6600 !important;

    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
}

.wei-forgot-password-card button:hover {
    opacity: .9;
}

.wei-auth-links {
    margin-top: 20px;
    text-align: center;
}

.wei-auth-links a {
    color: #111827;
    text-decoration: none;
    font-weight: 500;
}

.wei-auth-links a:hover {
    text-decoration: underline;
}

.wei-success-message {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.wei-error-message {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}
.wei-field-error {
    color: #dc2626;
    font-size: 13px;
    margin-top: 6px;
}

@media (max-width: 768px) {

    .wei-forgot-password {
        padding: 20px;
    }

    .wei-forgot-password-card {
        padding: 25px;
    }

    .wei-forgot-password-card h1 {
        font-size: 26px;
    }
}