/* Fundo */
body {
    background: #0b0b0b;
    font-family: Arial, sans-serif;
    color: white;
    margin: 0;
    padding: 0;
}

/* Container principal */
.auth-container {
    max-width: 380px;
    background: #1b1b1b;
    margin: 50px auto;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 10px #000;
    text-align: center;
}

/* Títulos */
.auth-container h2 {
    color: #FFD700;
    margin-bottom: 20px;
}

/* Inputs */
.auth-container input {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: none;
    outline: none;
    margin-bottom: 15px;
    background: #333;
    color: #fff;
    font-size: 15px;
}

/* Botões */
.auth-container button {
    width: 100%;
    padding: 12px;
    background: #007bff;
    border: none;
    font-size: 16px;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

.auth-container button:hover {
    background: #0056b3;
}

/* Link */
.auth-container a {
    color: #FFD700;
    text-decoration: none;
}

.auth-container a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 480px) {
    .auth-container {
        width: 90%;
        margin-top: 30px;
        padding: 20px;
    }
}
