body.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.login-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-section {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo {
    max-width: min(200px, 80%);
    height: auto;
    margin-bottom: 1rem;
}

.logo-icon {
    font-size: 4rem;
    color: #667eea;
    margin-bottom: 1rem;
    display: block;
}

.brand-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-subtitle {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 0;
}

.login-page .form-floating {
    margin-bottom: 1rem;
}

.login-page .form-control {
    transition: all 0.3s ease;
}

.btn-login {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.powered-by {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.powered-by small {
    color: #6c757d;
    font-size: 0.875rem;
}

.powered-by .company-name {
    color: #667eea;
    font-weight: 600;
}

.login-page .alert {
    margin-bottom: 1rem;
}

.login-page .loading {
    display: none;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    animation: none;
}

.login-page .loading .spinner-border {
    width: 1rem;
    height: 1rem;
}

@media (max-width: 480px) {
    .login-container {
        padding: 2rem 1.5rem;
    }
}
