﻿:root {
    --stripe-purple: #635bff;
    --stripe-purple-light: #7c3aed;
    --stripe-purple-dark: #5b21b6;
    --stripe-blue: #0070f3;
    --stripe-blue-light: #00d4ff;
    --stripe-green: #00d924;
    --stripe-orange: #ff5722;
    --stripe-gray-50: #f8fafc;
    --stripe-gray-100: #f1f5f9;
    --stripe-gray-200: #e2e8f0;
    --stripe-gray-300: #cbd5e1;
    --stripe-gray-400: #94a3b8;
    --stripe-gray-500: #64748b;
    --stripe-gray-600: #475569;
    --stripe-gray-700: #334155;
    --stripe-gray-800: #1e293b;
    --stripe-gray-900: #0f172a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, var(--stripe-gray-50), rgba(99, 91, 255, 0.05));
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.forgot-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 450px;
    width: 100%;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
}

.form-control {
    border-radius: 0.75rem;
    padding: 0.75rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--stripe-purple), var(--stripe-purple-light));
    border: none;
    padding: 0.75rem;
    font-weight: 600;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(99, 91, 255, 0.3);
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(99, 91, 255, 0.4);
    }

.form-text a {
    text-decoration: none;
    color: var(--stripe-purple);
    font-weight: 500;
}

.forgot-header {
    text-align: center;
    margin-bottom: 2rem;
}

    .forgot-header h2 {
        font-weight: 700;
        color: var(--stripe-gray-800);
    }

.text-danger {
    font-size: 0.9rem;
}

.corner-decor {
    position: fixed;
    z-index: -1;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at center, var(--stripe-purple-light), transparent 70%);
    opacity: 0.15;
    pointer-events: none;
}

.top-left {
    top: 0;
    left: 0;
    border-top-left-radius: 100%;
}

.bottom-right {
    bottom: 0;
    right: 0;
    border-bottom-right-radius: 100%;
}
.btn-outline-dark {
    border: 2px solid var(--stripe-gray-900);
    color: var(--stripe-gray-900);
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .btn-outline-dark:hover {
        background: var(--stripe-gray-900);
        border-color: var(--stripe-gray-900);
        transform: translateY(-1px);
    }

