body {
    background-color: #f8f9fa;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; /* Isso garante que a altura seja 100% da tela */
}

.login-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px; /* Limite máximo de largura */
}

.login-container h2 {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: bold;
}

.btn-danger {
    width: 100%;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
}

.form-footer a {
    color: #007bff;
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

.text-danger {
    color: red;
    font-size: 0.875rem;
}

.invalid-feedback {
    display: block !important;
}
