/* ===================================
   Login Page Styles - Simple Internal Light Mode
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background: #f8fafc;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
}

/* Login Container */
.login-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 2rem;
}

/* Animated Logo - Positioned above login box */
.login-container > .hero-logo-animated {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    transform: scale(1);
}

/* Simple Login Card */
.login-card-simple {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 4px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.5);
}

/* Form Styles */
#loginForm {
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group:first-child {
    margin-top: 0;
}

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    color: #1a202c;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: #9ca3af;
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

/* Login Button */
.btn-login {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-login:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .login-container > .hero-logo-animated {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .login-card-simple {
        padding: 2rem;
    }
    
    .login-container > .hero-logo-animated {
        width: 180px;
        height: 180px;
    }
    
    .login-container {
        gap: 1.5rem;
    }
}

/* Override hero-logo styles for login page */
.login-container .hero-logo-text {
    font-size: 3rem;
}

.login-container .logo-background-gradient {
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.15) 0%, 
        rgba(118, 75, 162, 0.15) 100%);
}