/* PAGE -- forgot_password_desktop | Pure CSS (no PHP) */

body {
    background-color: var(--bg-body, #0F212E);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.bg-splash {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.4;
}
.splash-1 { background: var(--accent-blue, #1475E1); top: -200px; left: -200px; }
.splash-2 { background: var(--accent-green, #00E701); bottom: -200px; right: -200px; }

.auth-card {
    background: color-mix(in srgb, var(--bg-sidebar, #1A2C38) 80%, transparent);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color, #2F4553);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    color: var(--text-primary, #FFFFFF);
    z-index: 10;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.form-control {
    background: color-mix(in srgb, var(--bg-body, #0F212E) 80%, transparent);
    border: 1px solid var(--border-color, #2F4553);
    color: var(--text-primary, #FFFFFF);
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 15px;
}
.form-control:focus {
    background: color-mix(in srgb, var(--bg-body, #0F212E) 93%, transparent);
    border-color: var(--accent-blue, #1475E1);
    color: var(--text-primary, #FFFFFF);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-blue, #1475E1) 20%, transparent);
}
.form-control::placeholder {
    color: color-mix(in srgb, var(--text-secondary, #B1BAD3) 53%, transparent);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue, #1475E1) 0%, color-mix(in srgb, var(--accent-blue, #1475E1) 80%, transparent) 100%);
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px color-mix(in srgb, var(--accent-blue, #1475E1) 40%, transparent);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: color-mix(in srgb, var(--accent-blue, #1475E1) 10%, transparent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.icon-circle i {
    font-size: 32px;
    color: var(--accent-blue, #1475E1);
}

.alert-success-custom {
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #81c784;
    border-radius: 12px;
}
.alert-error-custom {
    background: rgba(244, 67, 54, 0.15);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #e57373;
    border-radius: 12px;
}

.input-group-text {
    background: transparent;
    border-color: var(--border-color, #2F4553);
    color: var(--text-secondary, #B1BAD3);
}

a { color: var(--accent-blue, #1475E1); text-decoration: none; }
a:hover { text-decoration: underline; }

.text-muted { color: var(--text-secondary, #B1BAD3) !important; }
