/* Typography & Reset */
body {
    font-family: 'Prompt', sans-serif;
    color: #4a5568;
    background-color: #f8fafc;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background Animations - matching the main site Aurora */
.aurora-bg-container {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    z-index: 0;
}

.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
    opacity: 0.6;
}

.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s infinite alternate;
}

.aurora-blob-1 { top: -10%; left: -10%; width: 50vw; height: 50vw; background: rgba(59, 130, 246, 0.3); animation-duration: 25s; }
.aurora-blob-2 { bottom: -20%; right: -10%; width: 60vw; height: 60vw; background: rgba(147, 197, 253, 0.3); animation-duration: 22s; animation-delay: -5s; }
.aurora-blob-3 { top: 40%; left: 60%; width: 40vw; height: 40vw; background: rgba(37, 99, 235, 0.2); animation-duration: 28s; animation-delay: -10s; }

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(40px, 30px) scale(1.05); }
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08) !important;
}

/* Typography elements */
.form-title {
    color: #1e3a8a; /* Navy Blue */
    font-size: 1.8rem;
}

.form-subtitle {
    color: #3b82f6; /* Blue */
}

/* Form Controls */
.form-control, .form-select {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #cbd5e1;
    background-color: #f8fafc;
    transition: all 0.2s ease-in-out;
}

.form-control:focus, .form-select:focus {
    border-color: #3b82f6;
    background-color: #ffffff;
    box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.2);
}

.form-label {
    color: #334155;
}

/* Buttons */
.btn-primary {
    background-color: #1e3a8a;
    border-color: #1e3a8a;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(30, 58, 138, 0.2), 0 2px 4px -1px rgba(30, 58, 138, 0.1);
}

.btn-primary:hover:not(:disabled) {
    background-color: #1e40af;
    border-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(30, 58, 138, 0.3), 0 4px 6px -2px rgba(30, 58, 138, 0.1);
}

.btn-primary:disabled {
    background-color: #94a3b8;
    border-color: #94a3b8;
    cursor: not-allowed;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    border-radius: 20px;
    padding: 0.4rem 1rem;
    transition: all 0.2s;
}

.back-btn:hover {
    background-color: #e2e8f0;
    color: #1e293b;
}

/* Icon Styles */
.icon-circle {
    width: 70px;
    height: 70px;
    background-color: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
}

.icon-lg {
    width: 32px;
    height: 32px;
}

/* Breadcrumbs */
.breadcrumb-item a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: #1e40af;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #64748b;
}

/* Checkbox specific */
.form-check-input:checked {
    background-color: #1e3a8a;
    border-color: #1e3a8a;
}

/* Notice Box */
.password-reset-notice {
    display: flex;
    gap: 12px;
    padding: 16px 18px;
    margin: 20px 0 30px 0;
    background: #eef6ff;
    border: 1px solid #cfe2ff;
    border-left: 4px solid #0d6efd;
    border-radius: 10px;
}

.password-reset-notice .notice-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    color: #0d6efd;
    display: flex;
    align-items: center;
}

.password-reset-notice .notice-content strong {
    display: block;
    margin-bottom: 4px;
    color: #084298;
}

.password-reset-notice .notice-content p {
    margin: 0 0 4px;
    color: #052c65;
}

.password-reset-notice .notice-content small {
    display: block;
    opacity: 0.8;
    color: #052c65;
}
