/* ========================================= */
/* Forgot Password — External Styles         */
/* Variables come from shared/variables.css   */
/* ========================================= */

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-main);
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.auth-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-top: 60px;
    margin-bottom: 40px;
}

.auth-card {
    background: var(--bg-card);
    width: 100%;
    max-width: 420px;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.auth-icon {
    width: 60px;
    height: 60px;
    background: rgba(106, 0, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--flux-purple);
    font-size: 24px;
    border: 1px solid rgba(106, 0, 255, 0.2);
}

.auth-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.auth-subtitle {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 12px 15px;
    color: white;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
    box-sizing: border-box;
}

.form-input:focus {
    border-color: var(--flux-purple);
    background: rgba(255, 255, 255, 0.08);
}

.submit-btn {
    width: 100%;
    background: var(--flux-purple);
    color: white;
    border: none;
    padding: 14px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
    box-shadow: 0 4px 15px var(--flux-purple-glow);
}

.submit-btn:hover {
    background: var(--flux-purple-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--flux-purple-glow);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.auth-footer {
    margin-top: 25px;
    font-size: 14px;
    color: var(--text-muted);
}

.auth-link {
    color: var(--flux-purple);
    text-decoration: none;
    font-weight: 500;
}

.auth-link:hover {
    text-decoration: underline;
}

/* ---- Responsive ---- */
@media (max-width: 480px) {
    .auth-card {
        padding: 24px 16px;
        border-radius: var(--radius-md);
    }
}
