body {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.background-login {
	background-color:#CBEBF8;
	background: url("/login/bg-login-blue.jpg") no-repeat center center;
	background-size: cover;
	height: 100vh;
	overflow: hidden;
	
}

#contenedor_logueo {
    text-align: center;
    width: 350px;
}

#logo img {
    margin-bottom: 20px;
    width: 350px;
}

.input-group {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 25px;
    padding: 10px 15px;
    margin: 10px 0;
}

.input-group i {
    margin-right: 10px;
    color: #b2b2b2;
    font-size: 25px;
}

.input-group input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 16px;
}

#btn_ingresar {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 25px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 900;
    transition: 0.3s;
}

#btn_ingresar:hover {
    background: #388E3C;
}

#error_logueo {
    color: #ff4d4d; 
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    text-align: center;
    background: rgba(255, 0, 0, 0.08); 
    padding: 10px;
    border-radius: 25px;
    margin-bottom: 10px;
    border: 1px solid #ff4d4d;
    width: 90%;
    display: inline-block;
}

/* Mensaje de error crítico para bloqueos de seguridad */
#error_logueo_critico {
    color: #ffffff; 
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    text-align: center;
    background: linear-gradient(135deg, #dc3545, #c82333);
    padding: 15px;
    border-radius: 25px;
    margin-bottom: 10px;
    border: 2px solid #ffffff;
    width: 90%;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
    font-weight: bold;
}

/* Mensaje cuando formulario está bloqueado */
.formulario_bloqueado {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    text-align: center;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.9), rgba(200, 35, 51, 0.9));
    padding: 20px;
    border-radius: 25px;
    margin: 15px 0;
    border: 2px solid #ffffff;
    font-weight: bold;
}
