/* ------------------------------ */
/* Auth Pages (Login / Reset / Forgot Password) */
/* ------------------------------ */

/* Page Gradient + Floating Shapes */
.page-content.login-cover {
    background: linear-gradient(135deg, #dff5ff, #eaf7ff, #f3faff);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Floating animated shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    backdrop-filter: blur(8px);
    animation: float 8s infinite ease-in-out;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}
.shape1 { width: 120px; height: 120px; top: 10%; left: 15%; animation-delay: 0s; }
.shape2 { width: 180px; height: 180px; bottom: 8%; right: 10%; animation-delay: 2s; }
.shape3 { width: 90px; height: 90px; top: 50%; right: 25%; animation-delay: 4s; }

@keyframes float {
    0% { transform: translateY(0px); opacity: .7; }
    50% { transform: translateY(-20px); opacity: 1; }
    100% { transform: translateY(0px); opacity: .7; }
}

/* Glassmorphism Card */
.auth-card {
    width: 400px;
    border-radius: 20px;
    background: rgba(255,255,255,0.60);
    backdrop-filter: blur(15px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.5);
    animation: cardFadeIn 1s ease-out;
    padding: 15px 30px 30px 30px;
}

@keyframes cardFadeIn {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

/* School Logo */
.school-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border: 3px solid #fff;
}
.top-title {
    display: flex;
    align-items: center;
    gap: 10px;
}
.top-title h3 {
    font-size: 40px;
}

/* Headings */
.auth-card h3, .auth-card h4, .auth-card h5 {
    font-weight: 700;
    color: #013a63;
}
.auth-card span {
    color: #707a8a;
}

/* Inputs */
.auth-card .form-control {
    height: 45px;
    border-radius: 10px;
    border: 1px solid #bcd4e6;
    transition: .3s;
    background: rgba(255,255,255,0.85);
}
.auth-card .form-control:focus {
    border-color: #0284c7;
    box-shadow: 0 0 0 4px rgba(2,132,199,0.12);
}

/* Buttons */
.btn-auth {
    background: #01579b !important;
    color: #fff !important;
    border-radius: 10px;
    padding: 10px;
    font-weight: 600;
    transition: .3s;
}
.btn-auth:hover {
    background: #014f8a !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(0,0,0,0.15);
}

/* Links */
.auth-card a {
    color: #0369a1;
    transition: .3s;
}
.auth-card a:hover {
    color: #014f86;
    text-decoration: underline;
}

/* Footer */
.auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #5c6b80;
}
