body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #0e0e0e; /* Fundo escuro */
    font-family: 'Poppins', sans-serif;
    color: white;
}

.register-link {
    margin-top: 10px;
    font-size: 14px;
}

.register-link a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.register-link a:hover {
    text-decoration: underline;
}

/* Estilo para mensagens de erro */
.alert-error {
    background-color: #ff4d4d;
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.register-container {
    background: #141414; /* Caixa mais escura */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
    color: white;
    border: 1px solid #707070; /* Borda cinza claro */
}

.register-container h2 {
    margin-bottom: 20px;
    font-weight: 600;
    color: white; /* Cor vibrante para título */
}

.form-control {
    border-radius: 8px;
    background-color: #1b1b1b; /* Fundo escuro para inputs */
    color: white;
    border: 1px solid #707070; /* Borda cinza claro */
}

.form-control::placeholder {
    color: #adb5bd; /* Cinza claro */
}

.btn-register {
    background: white; /* Gradiente nos botões */
    color: black;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
}

.login-link {
    margin-top: 10px;
    font-size: 14px;
}

.login-link a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Estilo para mensagens de erro */
.alert-error {
    background-color: #ff4d4d;
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.btn-register:hover {
    background: white;
    color: black;
    transform: scale(1.05);
}
