﻿* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: radial-gradient(circle at top left, rgba(13,110,253,0.30), transparent 30%), radial-gradient(circle at bottom right, rgba(102,16,242,0.25), transparent 28%), linear-gradient(135deg, #0f172a 0%, #172554 35%, #1e3a8a 70%, #0f172a 100%);
    overflow-x: hidden;
}

.bg-blur-1,
.bg-blur-2,
.bg-blur-3 {
    position: fixed;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .45;
    z-index: 0;
}

.bg-blur-1 {
    width: 260px;
    height: 260px;
    background: #38bdf8;
    top: 40px;
    left: 40px;
}

.bg-blur-2 {
    width: 320px;
    height: 320px;
    background: #8b5cf6;
    bottom: 60px;
    right: 50px;
}

.bg-blur-3 {
    width: 220px;
    height: 220px;
    background: #60a5fa;
    top: 48%;
    left: 52%;
    transform: translate(-50%, -50%);
}

.forgot-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 16px;
    position: relative;
    z-index: 1;
}

.forgot-card {
    width: 100%;
    max-width: 470px;
    padding: 34px 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255,255,255,0.20);
    box-shadow: 0 20px 60px rgba(0,0,0,0.30);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: #ffffff;
}

.login-logo {
    max-height: 80px;
    max-width: 100%;
    display: block;
    margin: 0 auto 14px auto;
    object-fit: contain;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,.25));
}

.forgot-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #ffffff;
    letter-spacing: .2px;
}

.forgot-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.80);
    font-size: 14px;
    margin-bottom: 24px;
}

.input-label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}

.forgot-input {
    height: 50px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.20);
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    padding: 0 14px;
    font-size: 15px;
    box-shadow: none;
}

    .forgot-input::placeholder {
        color: rgba(255,255,255,0.65);
    }

    .forgot-input:focus {
        background: rgba(255,255,255,0.16);
        color: #ffffff;
        border-color: rgba(255,255,255,0.45);
        box-shadow: 0 0 0 0.18rem rgba(255,255,255,0.10);
    }

.msg-label {
    display: block;
    margin-bottom: 16px;
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 14px;
}

.validator-summary {
    border-radius: 14px;
    padding: 12px 14px;
    margin-bottom: 16px;
    background: rgba(220,53,69,0.16);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
}

    .validator-summary ul {
        margin-bottom: 0;
        padding-left: 18px;
    }

.send-btn {
    height: 50px;
    border-radius: 14px !important;
    font-weight: 600;
    font-size: 15px;
    border: none;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
}

    .send-btn:hover {
        background: linear-gradient(135deg, #1d4ed8, #2563eb);
        color: #ffffff;
    }

.bottom-links {
    margin-top: 18px;
    text-align: center;
    color: rgba(255,255,255,0.80);
}

    .bottom-links a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 600;
    }

        .bottom-links a:hover {
            text-decoration: underline;
        }

.field-note {
    color: rgba(255,255,255,0.78);
    font-size: 12px;
    margin-top: 8px;
    line-height: 1.5;
}

.text-danger {
    color: #ffd6d6 !important;
    font-size: 13px;
}

@media (max-width: 576px) {
    .forgot-card {
        padding: 28px 18px;
        border-radius: 22px;
    }

    .forgot-title {
        font-size: 26px;
    }
}
