body {
    /* Define o Fundo e garante que cubra toda a tela */
    background-image: url('wallpaper.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    color: #fff;
}

.container {
    /* Estilo do container principal do formulário */
    background: rgba(0, 0, 0, 0.8); /* Fundo escuro semi-transparente */
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.5); /* Sombra dourada */
    width: 350px;
    text-align: center;
}

.container h2 {
    color: #ffcc00; /* Dourado */
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    color: #ccc;
}

.input-group input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ffcc00;
    background: #1a1a1a;
    color: white;
    border-radius: 4px;
    box-sizing: border-box;
}

.btn-primary, .btn-switch {
    width: 100%;
    padding: 12px;
    background-color: #ffcc00; /* Botão Dourado */
    color: #000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #e6b800;
}

.switch-link {
    margin-top: 20px;
    font-size: 14px;
}

.switch-link a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
}

/* Estilo do Modal (se preferir um CSS em vez de inline) */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 3px solid #ffcc00;
    box-shadow: 0 0 25px #ffcc00;
}

.modal-content h1 {
    color: #ffcc00;
    margin: 15px 0;
}