
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
html,
body {
 	height: 100%;
}

:root{
	--lochmara-50: #f0f9ff;
	--lochmara-100: #e0f1fe;
	--lochmara-200: #b9e4fe;
	--lochmara-300: #7cd0fd;
	--lochmara-400: #36b9fa;
	--lochmara-500: #0ca0eb;
	--lochmara-600: #0086d3;
	--lochmara-700: #0165a3;
	--lochmara-800: #065686;
	--lochmara-900: #0b486f;
	--lochmara-950: #072d4a;

	--torch-red-50: #fff0f2;
	--torch-red-100: #ffdde1;
	--torch-red-200: #ffc0c7;
	--torch-red-300: #ff95a1;
	--torch-red-400: #ff586a;
	--torch-red-500: #ff243c;
	--torch-red-600: #fe1a33;
	--torch-red-700: #d60017;
	--torch-red-800: #b00417;
	--torch-red-900: #910b1a;
	--torch-red-950: #500009;
}
body {
	display: flex;
	align-items: center;
	font-family: 'Roboto', sans-serif;
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: var(--lochmara-600);
}/* =========================================
   DISEÑO MODERNO DE LOGIN
========================================= */

/* 1. Fondo animado elegante (Tonos azules/grises corporativos) */
body.bg-animated {
    height: 100vh;
    background: linear-gradient(-45deg, #e0eafc, #cfdef3, #e0eafc, #f8f9fa);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    overflow: hidden; /* Evita scroll innecesario */
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 2. Configuración del contenedor principal para centrarlo perfecto */
.form-signin {
    max-width: 450px;
    padding: 15px;
}

/* 3. Tarjeta de Login (Efecto Glass/Neumorfismo suave) */
.login-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    
    /* Animación de entrada (Sube y aparece) */
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUpIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUpIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 4. Efecto de entrada para el logo (un poco más lento para darle drama) */
.logo-animate {
    opacity: 0;
    transform: scale(0.9);
    animation: popIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 5. Estilización moderna de los Inputs */
.custom-input {
    border-radius: 0.75rem;
    border: 1px solid #ced4da;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.custom-input:focus {
    background-color: #ffffff;
    border-color: #0b486b; /* Cambia este color al azul de tu marca */
    box-shadow: 0 0 0 0.25rem rgba(11, 72, 107, 0.15);
}

/* 6. Botón de Login moderno */
.btn-login {
    background: linear-gradient(135deg, #0b486b 0%, #0d6efd 100%); /* Ajusta al color de tu empresa */
    border: none;
    border-radius: 0.75rem;
    padding: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
    background: linear-gradient(135deg, #0d6efd 0%, #0b486b 100%);
}

.btn-login:active {
    transform: translateY(0);
}
h2{	
	font-family: 'Roboto', sans-serif;
	font-weight: bolder;
	color: var(--lochmara-950);
}
.form-signin {
	max-width: 400px;
	padding: 15px;
}
#sessionOK{	
	background-color: var(--lochmara-300);
	border-color: var(--lochmara-950) !important;
	box-shadow: 0px 8px 8px -4px rgba(0,0,0,0.75);
}
.form-signin .form-floating:focus-within {
	z-index: 2;
}

.form-signin input[type="email"] {
	font-family: 'Roboto', sans-serif;
	margin-bottom: -1px;
}

.form-signin input[type="password"] {
	font-family: 'Roboto', sans-serif;
	margin-bottom: 10px;
}

.bd-placeholder-img {
	font-size: 1.125rem;
	text-anchor: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

@media (min-width: 768px) {
	.bd-placeholder-img-lg {
		font-size: 3.5rem;
	}
}

.b-example-divider {
	height: 3rem;
	background-color: rgba(0, 0, 0, .1);
	border: solid rgba(0, 0, 0, .15);
	border-width: 1px 0;
	box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.b-example-vr {
	flex-shrink: 0;
	width: 1.5rem;
	height: 100vh;
}

.bi {
	vertical-align: -.125em;
	fill: currentColor;
}

.nav-scroller {
	position: relative;
	z-index: 2;
	height: 2.75rem;
	overflow-y: hidden;
}

.nav-scroller .nav {
	display: flex;
	flex-wrap: nowrap;
	padding-bottom: 1rem;
	margin-top: -1px;
	overflow-x: auto;
	text-align: center;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
}

/*MODAL*/
.modal .modal-content{
	background: transparent !important;
	box-shadow: 0px 0px 7px 0px rgba(255,255,255,1);
	backdrop-filter: blur(10px);
}
.modal .modal-content .modal-header{
	background-color: rgba(39,48,60,.5);
}
.modal .modal-content .modal-header .modal-title{
	color: #fff;
}
.modal .modal-content .modal-header button{
	color: #fff !important;
}
.modal .modal-content .modal-body{
	background-color: rgba(255, 255, 255, .5);
	color: #000;
}
.modal .modal-content .modal-footer{
	background-color: rgba(39,48,60,.5);
}

.btn-mined{
	background-color: var(--lochmara-950);
	color: #c4c8cf;
	border: 1px solid #858e9d;
	transition: all .3s;
}
.btn-mined:hover{
	background-color: var(--lochmara-800);
	border: 1px solid #858e9d;
	box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.75);
	color: #fff;
}
.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('../../assets/images/gif/Box-Process.gif') 50% 50% no-repeat rgba(52,61,77,0.7);
    background-size: 10%;
}