* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0a031a;
    --secondary-dark: #110a23;
    --accent-purple: #7b3fe4;
    --accent-neon: #c96cff;
    --accent-teal: #00e5e5;
    --text-primary: #f5f5ff;
    --text-secondary: #b8b5d6;
    --glass-bg: rgba(30, 15, 50, 0.3);
    --glass-border: rgba(123, 63, 228, 0.2);
    --shadow-glow: 0 0 30px rgba(123, 63, 228, 0.5);
    --gradient-primary: linear-gradient(135deg, #ffffff, #cc83f7);
    --gradient-dark: linear-gradient(135deg, #0a0515, #12192f, #000000);
}

body {
    background: var(--gradient-dark);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-container {
    /* width: 100%; */
    max-width: 700px;
    background: rgb(255 255 255 / 0%);
    backdrop-filter: blur(15px);
    /* border: 1px solid var(--glass-border); */
    /* border-radius: 30px; */
    /* padding: 40px; */
    /* box-shadow: var(--shadow-glow); */
    object-fit: cover;
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.auth-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.auth-form h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.alert {
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 25px;
    font-size: 0.95rem;
    text-align: center;
}

.alert-error {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
    color: #ff6b81;
}

.alert-success {
    background: rgba(46, 213, 115, 0.1);
    border: 1px solid rgba(46, 213, 115, 0.3);
    color: #2ed573;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input {
    width: 100%;
    padding: 18px 20px;
    background: rgba(30, 15, 50, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(123, 63, 228, 0.2);
}

.btn-primary {
    width: 100%;
    padding: 18px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 15px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(123, 63, 228, 0.4);
}

.auth-links {
    text-align: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--glass-border);
}

.auth-links p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.auth-links a {
    color: var(--accent-teal);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.auth-links a:hover {
    color: var(--accent-neon);
    text-decoration: underline;
}

.auth-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 480px) {
    .auth-container {
        padding: 30px 25px;
    }
    
    .logo {
        font-size: 2rem;
    }
}