body {
    margin: 0;
    padding: 0;
    background-color: black;
    font-family: Arial, sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    flex-direction: column;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 20px;
    margin: 0 auto; /* Centralizar o container horizontalmente */
}

.logo {
    margin-bottom: 10px;
    width: 100px; /* Tamanho da logo */
}

/* Estilos para mensagens de sucesso e erro */
.alert {
    padding: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 16px;
}

.alert.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.content-box {
    background-color: #141414;
    border-radius: 15px;
    padding: 40px 20px; /* Aumentar o padding para maior altura */
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto; /* Centralizar o content-box horizontalmente */
    margin-top: 20px;
    
}

h1 {
    margin: 0 0 20px;
    font-size: 18px;
}

.form-group {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}

.form-input {
    background: transparent;
    border: 1px solid white;
    border-radius: 10px;
    padding: 15px;
    color: white;
    width: 88%;
    margin: 0 5px; /* Espaço horizontal entre inputs */
}

.submit-button {
    background-color: #f9b234;
    color: #000;
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
    cursor: pointer;
    margin-top: 20px;
    width: 100%;
    max-width: 200px;
    font-weight: bold; /* Negrito */
    text-transform: uppercase; /* Maiúsculas */
}

select.form-input option {
    color: black;           /* cor do texto */
    background-color: white; /* fundo */
}

.login-prompt {
    margin-top: 20px;
    font-size: 14px;
    text-align: center; /* Centralizar o texto "Já possui uma conta?" */
}

.login-prompt a {
    color: #f9b234;
    text-decoration: none;
}

/* Estilos responsivos */
@media (max-width: 600px) {
    .container {
        padding: 10px;
    }

    .logo {
        width: 80px;
        margin-bottom: 5px;
    }

    .content-box {
        padding: 20px 10px;
        margin-top: 10px;
        max-width: 90%;
    }

    .form-group {
        flex-direction: column;
        gap: 10px;
    }

    .form-input {
        width: 100%;
        margin: 0;
    }
}
