/**
 * Login Page Styles - Easy to customize for client
 */

:root {
    /* Brand Colors - Change these to match client branding */
    --primary: #ff2fb3;
    --primary-dark: #e0299f;
    --secondary: #8a2be2;
    
    /* Background Colors */
    --bg-dark: #0a0a14;
    --bg-darker: #050509;
    --card-bg: #16161f;
    --border-color: #262646;
    
    /* Text Colors */
    --text-light: #f2f2f7;
    --text-muted: #a1a1b5;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.login-container {
    width: 100%;
    max-width: 420px;
}

.login-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

.logo {
    text-align: center;
    margin-bottom: 2.5rem;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.logo-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.login-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.login-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

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

.form-label {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--bg-dark);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-input::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 47, 179, 0.15);
}

.login-btn {
    width: 100%;
    padding: 0.9rem 1.1rem;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 47, 179, 0.4);
}

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

.error-message {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(239, 68, 68, 0.3);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.footer {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.footer a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .login-card {
        padding: 2.5rem 2rem;
    }

    .logo-text {
        font-size: 2rem;
    }

    .login-title {
        font-size: 1.5rem;
    }
}
