/* Login Page Specific Styles */

.login-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #153560 0%, #264d7a 50%, #3b6b9e 100%);
    position: relative;
}

.login-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.login-form-container {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    padding: 2.5rem;
    animation: fadeIn 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.login-logo {
    height: 8rem;
    width: auto;
    max-width: 300px;
    margin: 0 auto;
    border-radius: 0.5rem;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
    animation: pulse-glow 2s infinite, floating 6s ease-in-out infinite;
}

.login-logo-fallback {
    height: 6rem;
    width: 6rem;
    background: linear-gradient(to bottom right, #60a5fa, #8b5cf6, #ec4899);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
    animation: pulse-glow 2s infinite, floating 6s ease-in-out infinite;
}

.login-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.login-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

.login-divider {
    width: 5rem;
    height: 0.25rem;
    background: linear-gradient(to right, #60a5fa, #8b5cf6);
    margin: 1rem auto;
    border-radius: 9999px;
}

.login-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.login-input:focus {
    ring: 2px;
    ring-color: #3b82f6;
    border-color: transparent;
}

.login-button {
    width: 100%;
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.2s;
    transform: scale(1);
}

.login-button:hover {
    background: linear-gradient(to right, #2563eb, #7c3aed);
    transform: scale(1.05);
}

.login-credentials-info {
    margin-top: 2rem;
    background: rgba(249, 250, 251, 1);
    border-radius: 0.5rem;
    padding: 1rem;
}

.credentials-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.credentials-section {
    font-size: 0.75rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.credentials-section:last-child {
    margin-bottom: 0;
}

.credentials-admin {
    font-weight: 600;
    color: #2563eb;
}

.credentials-employee {
    font-weight: 600;
    color: #059669;
}

.credentials-warning {
    color: #dc2626;
    margin-top: 0.5rem;
    font-weight: 500;
}

.login-footer {
    text-align: center;
    color: white;
    font-size: 0.875rem;
    margin-top: 2rem;
}

@media (max-width: 640px) {
    .login-form-container {
        margin: 1rem;
        padding: 2rem;
    }
    
    .login-title {
        font-size: 1.875rem;
    }
    
    .login-subtitle {
        font-size: 1rem;
    }
}