.login-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-logo {
    height: 60px;
    width: auto;
    margin-bottom: 16px;
    animation: logoGlow 4s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(102, 126, 234, 0.3));
        opacity: 1;
    }
    50% {
        filter: drop-shadow(0 0 16px rgba(102, 126, 234, 0.6));
        opacity: 0.95;
    }
}

.login-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 48px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow);
    animation: cardFadeIn 0.5s ease;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}


.login-header p {
    color: var(--text-secondary);
    font-size: 16px;
}

.login-form {
    margin-top: 32px;
}

.login-form .btn-primary {
    width: 100%;
    margin-top: 8px;
}

