/* ===== LOGIN SCREEN ===== */

.login-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: radial-gradient(ellipse at 50% 0%, 
        rgba(255, 0, 110, 0.1) 0%, 
        transparent 70%);
}

.neon-frame-large {
    max-width: 500px;
    width: 100%;
    animation: slideInUp var(--transition-slow) ease-out;
}

.neon-title {
    text-align: center;
}

.neon-subtitle {
    text-align: center;
}

/* Input Group */
.input-group {
    position: relative;
    margin-bottom: 30px;
    animation: slideInUp calc(var(--transition-slow) + 0.1s) ease-out;
}

/* Input styling */
.neon-input {
    width: 100%;
    padding: 15px 45px 15px 20px;
}

.input-icon {
    right: 15px;
}

/* Select field */
.neon-select {
    margin-top: 15px;
}

/* Button styling */
#activateBtn {
    width: 100%;
    padding: 14px 30px;
    font-size: 1rem;
    margin-bottom: 15px;
    animation: slideInUp calc(var(--transition-slow) + 0.2s) ease-out;
    position: relative;
}

#activateBtn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.5s;
}

#activateBtn:hover::after {
    left: 100%;
}

/* Info and Select */
.info-text {
    animation: slideInUp calc(var(--transition-slow) + 0.3s) ease-out;
}

#profileSelect {
    animation: slideInUp calc(var(--transition-slow) + 0.4s) ease-out;
}

/* ===== GLITCH EFFECT (Optional) ===== */

@keyframes glitch {
    0% {
        text-shadow: -2px 0 var(--neon-cyan),
                     2px 2px var(--neon-pink);
    }
    20% {
        text-shadow: 2px 2px var(--neon-cyan),
                     -2px -2px var(--neon-pink);
    }
    40% {
        text-shadow: -2px 2px var(--neon-cyan),
                     2px -2px var(--neon-pink);
    }
    60% {
        text-shadow: 2px 0 var(--neon-cyan),
                     -2px 2px var(--neon-pink);
    }
    80% {
        text-shadow: -2px 2px var(--neon-cyan),
                     2px 0 var(--neon-pink);
    }
    100% {
        text-shadow: 2px -2px var(--neon-cyan),
                     -2px 0 var(--neon-pink);
    }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .neon-frame-large {
        max-width: 100%;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .neon-input {
        font-size: 0.9rem;
    }
}

/* ===== LOADING STATE ===== */

.loading-indicator {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--neon-pink);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
