/* INÍCIO - estilo-login.css (TELA SEPARADA COM SEU TEMA DARK NEON) */
:root {
    --neon-blue: #0000ff;
    --neon-gold: #ffe524;
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.5);
    --border-radius: 12px;
}

/* ANIMAÇÃO DO BACKGROUND DA TELA DE LOGIN */
@keyframes moveGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: var(--text-light);
    
    /* SEU FUNDO ANIMADO */
    background: linear-gradient(-96deg, #000000, #000015, #000030, #000009);
    background-size: 290% 300%;
    animation: moveGradient 14s ease infinite;
}

/* O CONTAINER DO LOGIN QUE EU FIZ, COM O SEU EFEITO DE VIDRO */
.login-container {
    background: rgba(5, 5, 20, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    width: 100%;
    max-width: 380px;
}


/* ESTILIZAÇÃO DA LOGO NO TOPO */
.login-logo {
    display: block;
    margin: 0 auto 25px auto; /* Centraliza e dá espaço embaixo */
    max-width: 140px; /* Tamanho travado para não quebrar o card */
    height: auto;
    
    /* O SEU EFEITO NEON APLICADO DIRETO NA IMAGEM (PNG TRANSPARENTE) */
    filter: drop-shadow(0 2px 15px rgba(0, 0, 255, 0.8));
    transition: filter 0.3s ease;
}

.login-logo:hover {
    /* Acende um pouco mais o neon ao passar o mouse */
    filter: drop-shadow(0 2px 25px rgba(0, 0, 255, 1));
}
/* FIM - ADD NO CSS */



.login-container h2 {
    text-align: center;
    margin-bottom: 35px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* SEUS INPUTS COM EFEITO NEON */
.input-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 700;
    margin-left: 4px;
}

.input-group input {
    background: rgba(0, 0, 0, 0.5); 
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    padding: 15px;
    font-size: 16px;
    color: var(--text-light);
    width: 100%;
    outline: none;
    transition: all 0.3s ease;
}

.input-group input:focus {
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 0, 255, 0.4), inset 0 0 5px rgba(0, 0, 255, 0.1);
    background: rgba(0, 0, 0, 0.8);
}

/* O SEU BOTÃO DARK COM CLICK GOLD */
.btn-theme {
    background: linear-gradient(135deg, var(--neon-blue), #000020);
    color: #fff;
    border: 1px solid rgba(0, 0, 255, 0.4);
    padding: 16px;
    width: 100%;
    font-size: 14px;
    letter-spacing: 1.5px;
    font-weight: 800;
    border-radius: var(--border-radius);
    cursor: pointer;
    margin-top: 15px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-theme:active {
    transform: scale(0.95);
    background: linear-gradient(135deg, var(--neon-gold), #8a7c00);
    border-color: var(--neon-gold);
    color: #000;
    box-shadow: 0 4px 20px rgba(255, 229, 36, 0.7);
}
/* FIM - estilo-login.css */