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

.login-container {
    background: #141414; /* Caixa escura */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2); /* Borda discreta */
}

.login-container h2 {
    margin-bottom: 20px;
    font-weight: 600;
    color: #ff416c; /* Rosa vibrante */
}

.form-control {
    border-radius: 8px;
    background-color: #1b1b1b; /* Fundo escuro para inputs */
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.btn-login {
    background: linear-gradient(90deg, #ff416c, #ff4b2b);
    color: white;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
    border: none;
}

.btn-login:hover {
    background: linear-gradient(90deg, #ff4b2b, #ff416c);
    transform: scale(1.05);
}

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

.register-link a {
    color: #ff416c;
    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: #ff416c; /* 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: linear-gradient(90deg, #ff416c, #ff4b2b); /* Gradiente nos botões */
    color: white;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-register:hover {
    background: linear-gradient(90deg, #ff4b2b, #ff416c); /* Gradiente invertido no hover */
}

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

.login-link a {
    color: #ff416c;
    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;
}
