.error { color: red; }

.hidden { display: none; }

html, body {
    margin-top: 20px;
    height: auto;
}

.g-recaptcha {
    display: block; /* Ensure it's a block element */
    width: 100% !important; /* Full width */
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: fit-content;
}

.container-full {
    justify-content: center;
    align-items: center;
    height: 100%;
}

.login-form {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    background-color: black; /* Fondo negro del formulario */
    color: white; /* Texto blanco */
}

.form-control {
    background-color: #333; /* Fondo gris oscuro para los inputs */
    border: 1px solid #444; /* Borde gris oscuro */
    color: white; /* Texto blanco */
}

.form-control::placeholder {
    color: #bbb; /* Color gris claro para los placeholders */
}

.btn-primary {
    background-color: #007BFF;
    border-color: #007BFF;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.bg-dark {
    background-color: black;
}