/* css/auth.css - Estilo focado apenas em login e cadastro */
:root {
    --bg-dark: #09090b;
    --card-bg: #111113;
    --accent: #00f2ff;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: #fff;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 350px;
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #1f1f23;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.logo-cerberus {
    width: 200px;
    display: block;
    margin: 0 auto 20px auto;
}

h2 { text-align: center; color: var(--accent); font-size: 16px; text-transform: uppercase; margin-bottom: 25px; }

input {
    width: 100%;
    padding: 12px;
    margin: 8px 0 15px;
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 6px;
    color: white;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 12px;
    background: var(--accent);
    color: #000;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.4);
}

/* Botões Flutuantes Neon Agrupados */
.btn-flutuante {
    position: fixed;
    right: 30px;
    background: #00ffff; /* Fundo Neon */
    color: #0d0d12;      /* Texto escuro para contraste */
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    border: 2px solid #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-flutuante:hover {
    background: #0d0d12;
    color: #00ffff;
    border-color: #00ffff;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* Posições para empilhar (Praticamente colados) */
.btn-home { bottom: 85px; }
.btn-suporte { bottom: 30px; }

/* Estilo do link de navegação inferior */
.nav-back {
    text-align: center; 
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #1f1f23;
}

.nav-back a {
    color: #71717a;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-back a:hover {
    color: #00f2ff;
}