/* TURKCE ARAMA: password_reset_flow sayfa stili bolum 1 */
/* Body yerine class kullanıldı (base.html ile çakışmaz) */
    .reset-page {
        background: radial-gradient(circle at top right, #002d5a 0%, #004a8d 100%);
        min-height: 100vh;
    }

    .reset-card {
        border: none;
        border-radius: 1.5rem;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .reset-header {
        background: #ffffff;
        color: #002d5a;
        padding: 2.5rem 1.5rem 1.5rem;
        border-radius: 1.5rem 1.5rem 0 0;
        position: relative;
    }

    .reset-header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 25%;
        width: 50%;
        height: 4px;
        background: linear-gradient(to right, #00d2ff, #3a7bd5);
        border-radius: 2px;
    }

    .status-icon {
        font-size: 3.5rem;
        background: linear-gradient(135deg, #002d5a, #00d2ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 1rem;
    }

    label {
        font-weight: 700;
        color: #002d5a;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    input[type="email"],
    input[type="password"],
    .django-form-custom input {
        border-radius: 0.8rem;
        padding: 0.8rem 1.2rem;
        border: 2px solid #e9ecef;
        width: 100%;
        transition: all 0.3s ease;
        background-color: #f8f9fa;
    }

    input:focus {
        border-color: #00d2ff;
        background-color: #fff;
        box-shadow: 0 0 0 0.25rem rgba(0, 210, 255, 0.1);
        outline: none;
    }

    .btn-btu {
        background: linear-gradient(135deg, #002d5a 0%, #004a8d 100%);
        color: white;
        border: none;
        padding: 0.8rem;
        border-radius: 0.8rem;
        font-weight: 600;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .btn-btu:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 45, 90, 0.3);
        color: #00d2ff;
    }

    .django-form-custom p {
        margin-bottom: 1.5rem;
    }

    /* MOBİL RESPONSIVE */
    @media (max-width: 768px) {
        .reset-page { min-height: auto; }
        .reset-card { border-radius: 1.2rem; }
        .reset-header { padding: 1.8rem 1rem 1rem; border-radius: 1.2rem 1.2rem 0 0; }
        .status-icon { font-size: 3rem; margin-bottom: 0.8rem; }
        h3 { font-size: 1.2rem; }
        p { font-size: 0.85rem; }
        label { font-size: 0.85rem; }
        input { padding: 0.7rem 1rem; font-size: 0.95rem; }
        .btn { font-size: 0.9rem; }
        .card-body { padding: 1.5rem 1rem !important; }
    }

    @media (max-width: 576px) {
        .container { padding-left: 8px; padding-right: 8px; }
        .reset-card { border-radius: 1rem; }
        .reset-header { padding: 1.5rem 0.8rem 1rem; }
        .reset-header::after { width: 60%; }
        .status-icon { font-size: 2.5rem; margin-bottom: 0.6rem; }
        h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
        p { font-size: 0.8rem; }
        label { font-size: 0.8rem; }
        input[type="email"], input[type="password"], .django-form-custom input {
            border-radius: 0.6rem; padding: 0.6rem 0.9rem; font-size: 16px;
        }
        .django-form-custom p { margin-bottom: 1rem; }
        .btn-btu { padding: 0.7rem; font-size: 0.85rem; }
        .alert { font-size: 0.8rem; padding: 0.8rem; }
        .btn-outline-primary { font-size: 0.85rem; }
        .card-body { padding: 1rem !important; }
        .text-white-50 { font-size: 0.7rem; }
    }

    @media (max-width: 360px) {
        .reset-header { padding: 1.2rem 0.6rem 0.8rem; }
        .status-icon { font-size: 2rem; }
        input { font-size: 16px; padding: 0.5rem 0.8rem; }
        .btn-btu { padding: 0.6rem; }
    }
