/* Fondo y configuración general */

body {
    /* background: linear-gradient(to bottom right, #e6f2ff, #ffffff); */
    background: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}



/* Estilo del contenedor principal */
.custom-container {
    max-width: 600px;
    /* Contenedor más ancho */
    padding: 2rem;
    background-color: #c6c1c15c;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}



/* Estilo del encabezado */
.login-header {
    text-align: center;
    margin-bottom: -2.5rem;
}



.login-header img {
    width: 400px;
    position: relative;
    top: -44px;
}



.login-header h2 {
    font-size: 1.5rem;
    color: #343a40;
}



/* Estilo del cuerpo del formulario */
.login-body {
    padding: 1rem 0;
}



/* Estilo del pie de página */

.login-footer {
    text-align: center;
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 1.5rem;
}



/* Estilo de los inputs y botones */

.form-control {
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.95rem;

}

.form-check-label {
    margin-right: 1rem;
}



.btn-primary {
    background-color: #c20f45;
    border-color: #c20f45;
    padding: 0.75rem;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    border-radius: 8px;
}



.btn-primary:hover {
    background-color: #e66b75;
    border-color: #e66b75;
}



.text-decoration-none {
    color: #0056b3;
}



.text-decoration-none:hover {
    color: #004494;
    text-decoration: underline;
}



#eyeIcon {
    transition: transform 0.3s ease;
}



#eyeIcon.rotate {
    transform: rotateY(180deg);
    /* Gira el icono para simular el cambio de estado */
}