/* ========================================
   LOGIN PAGE STYLES
   ======================================== */

.login-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 40px;
    width: 100%;
    max-width: 450px;
    margin: 20px auto;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.login-header h3 {
    font-size: 16px;
    color: #666;
    font-weight: normal;
}

.login-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #666;
}

.login-icon {
    font-size: 60px;
    text-align: center;
    margin-bottom: 20px;
}

/* Make body flex for centering on login page only */
body.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
}