/* ============================================
   STUDENT LOGIN PAGE – GLASS STYLES
============================================ */

.student-login-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: var(--spacing-md);
}

.login-wrapper {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.student-login-card {
    padding: var(--spacing-xl);
    text-align: center;
}

.login-header {
    margin-bottom: var(--spacing-lg);
}

.login-header .school-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: var(--spacing-sm);
    border: 3px solid var(--primary-light);
    background: rgba(255,255,255,0.9);
    object-fit: cover;
}

.login-header h2 {
    color: white;
    margin-bottom: var(--spacing-xs);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.login-header .tagline {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

/* Glass form fields (inherits from global, but we ensure consistency) */
#student-login-form .form-group label {
    color: rgba(255,255,255,0.95);
    text-align: left;
    display: block;
    margin-bottom: 5px;
}

#student-login-form input,
#student-login-form select {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

#student-login-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

#student-login-form input:focus,
#student-login-form select:focus {
    background: rgba(255,255,255,0.25);
    border-color: var(--primary-light);
    outline: none;
    box-shadow: 0 0 0 3px rgba(108,99,255,0.2);
}

.login-btn {
    width: 100%;
    margin-top: var(--spacing-md);
}

.login-message {
    margin-top: var(--spacing-md);
    font-size: 0.9rem;
    min-height: 50px;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 480px) {
    .student-login-card {
        padding: var(--spacing-md);
    }
    .login-header .school-logo {
        width: 60px;
        height: 60px;
    }
}