/* Cores base: Roxo (#8A2BE2) e Preto (#1c1c1c) */
body {
    background-color: #1a1a1a; /* Fundo preto quase total */
    color: #f0f0f0; /* Texto branco/claro */
    font-family: 'Consolas', monospace; /* Fonte com pegada retrô de console */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.main-container {
    text-align: center;
    width: 90%;
    max-width: 450px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.7); /* Fundo semi-transparente para profundidade */
    border: 3px solid #8A2BE2; /* Borda roxa de destaque */
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.5); /* Sombra roxa brilhante */
}

.logo-title {
    color: #8A2BE2;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-shadow: 0 0 10px #8A2BE2; /* Efeito neon */
}

.auth-box form h2 {
    color: #f0f0f0;
    border-bottom: 2px dashed #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

input[type="text"], input[type="password"], input[type="email"] {
    width: 90%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #8A2BE2;
    background-color: #000;
    color: #00FF00; /* Texto verde de console para inputs */
    font-family: inherit;
}

/* Botão Principal - Login */
.btn-primary {
    background-color: #8A2BE2;
    color: #1c1c1c;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 10px;
}
.btn-primary:hover {
    background-color: #9933FF;
}

/* Botão Secundário - Cadastro */
.btn-secondary {
    background-color: #333;
    color: #8A2BE2;
    border: 1px solid #8A2BE2;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 10px;
}
.btn-secondary:hover {
    background-color: #444;
}

.divider {
    margin: 20px 0;
    text-align: center;
    color: #888;
}

.footer-text {
    font-size: 0.8em;
    color: #555;
    margin-top: 30px;
}