/* =====================================================
   ESTILOS BASE
===================================================== */

body {
	color: #6b6b6b;
	background: url("./svg_figma_vector.svg") no-repeat bottom right 30px, #fff;
	background-size: 21%;
	font-family: Arial, sans-serif;
}

/* Reset ligero (sin romper bootstrap) */
* {
	box-sizing: border-box;
}

/* =====================================================
   LAYOUT LOGIN CENTRADO
===================================================== */

.login-page {
	min-height: calc(100vh - 340px); /* header + logo */
	display: flex;
	align-items: flex-start; /* 👈 clave */
	justify-content: center;
	padding: 10px;
	margin-top: 0px; /* ajuste fino */
}


.login-card {
	width: 100%;
	max-width: 420px;
	background: #ffffff;
	border-radius: 10px;
	padding: 10px;
	box-shadow: 0 10px 25px rgba(0,0,0,.1);
	margin-top: 0;
}

/* Mobile */
@media (max-width: 576px) {
	.login-card {
		padding: 20px;
	}
}

/* =====================================================
   FORM LOGIN
===================================================== */

.login-card h3 {
	text-align: center;
	margin-bottom: 25px;
	color: #ff6600;
}

.form-group label {
	font-size: 14px;
	color: #555;
}

.form-control {
	border-radius: 4px;
	border: 1px solid #ccc;
	height: 38px;
}

.form-control:focus {
	border-color: #ff6600;
	box-shadow: none;
}

/* =====================================================
   BOTÓN LOGIN
===================================================== */

.btnIniciarSession {
	background-color: #ff6600 !important;
	border: none;
	color: #fff;
	font-weight: bold;
	transition: background-color .2s ease;
}

.btnIniciarSession:hover {
	background-color: #ff5500 !important;
}

/* =====================================================
   ALERTAS
===================================================== */

#accessAlert {
	font-size: 13px;
	min-height: 18px;
}

/* =====================================================
   LINKS OPCIONES
===================================================== */

.login-options {
	text-align: center;
	margin-top: 0px;
	margin-bottom: 0px;
}

.login-options a {
	display: block;
	font-size: 25px;
	color: #ff6600;
	text-decoration: none;
	margin: 0px 0;
}

.login-options a:hover {
	text-decoration: underline;
}


/* =====================================================
   FRANJAS HEADER / FOOTER
===================================================== */

.vector-bar {
	width: 100%;
	height: 70px;
	background-color: #062e55;
}

/* Header */
.vector-header {
	position: relative;
	top: 0;
	left: 0;
}

/* Footer */
.vector-footer {
	position: relative;
	bottom: 0;
	left: 0;
}

/* Ajustes móviles */
@media (max-width: 576px) {
	.vector-bar {
		height: 55px;
	}
}
