/* Login Page Styles */

.login-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: var(--bg-primary);
}

.login-content {
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Icon */
.login-icon {
    margin-bottom: 24px;
}

.icon-container {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background-color: rgba(0, 188, 212, 0.1);
    border: 1px solid rgba(0, 188, 212, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.3),
                0 0 40px rgba(0, 188, 212, 0.2),
                inset 0 0 20px rgba(0, 188, 212, 0.1);
    animation: pulse 2s ease-in-out infinite;
}

.icon-container svg {
    width: 40px;
    height: 40px;
    color: var(--accent-cyan);
    filter: drop-shadow(0 0 8px rgba(0, 188, 212, 0.6));
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 188, 212, 0.3),
                    0 0 40px rgba(0, 188, 212, 0.2),
                    inset 0 0 20px rgba(0, 188, 212, 0.1);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 188, 212, 0.5),
                    0 0 50px rgba(0, 188, 212, 0.3),
                    inset 0 0 25px rgba(0, 188, 212, 0.15);
        transform: scale(1.02);
    }
}

/* Title */
.login-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.login-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 400;
}

/* Form Container */
.login-form-container {
    width: 100%;
    background-color: var(--bg-secondary);
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.form-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

/* Error Message */
.error-message {
    background-color: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #F44336;
    padding: 12px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
}

/* Login Button */
#login-form .btn-primary {
    width: 100%;
    margin-top: 8px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
}

/* Demo Credentials */
.demo-credentials {
    margin-top: 24px;
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.demo-credentials .highlight {
    color: var(--accent-cyan);
    font-weight: 600;
    font-family: 'Courier New', monospace;
    background-color: rgba(0, 188, 212, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Password Toggle Icon */
#toggle-password {
    cursor: pointer;
    user-select: none;
}

#toggle-password:hover {
    color: var(--accent-cyan);
}

/* Remember Me Checkbox */
#login-form .checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    color: var(--text-secondary);
    font-size: 14px;
}

#login-form .checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent-cyan);
}

#login-form .checkbox-label:hover {
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 480px) {
    .login-form-container {
        padding: 24px;
    }
    
    .login-title {
        font-size: 28px;
    }
    
    .login-subtitle {
        font-size: 14px;
    }
}

