@charset "utf-8";
/*body { padding: 0; margin: 0; font: 0.7em 'Source Sans Pro', Arial, sans-serif; line-height: 1.6em; background: #fff; color: #454545; }*/


.color_azul{
    background-color: #1788d3;
}
.color_azul_marino{
    background-color: #09365F;
}
.fondo_azul_marino{
    background-color: #09365F !important;
    color: white !important;
}

.color_verde{
    background-color: #9ecc50;
}
.color_verde_oscuro{
    background-color: #BAD53D;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.cabecera {
    background-color: #0056b3;
    color: white;
    padding: 0.8rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cabecera-contenido {
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 1rem;
}

.logo {
    height: 40px;
    margin-right: 15px;
}

.cabecera h1 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
    flex-grow: 1;
    text-align: center;
}

.cuerpo {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
}

.contenedor-principal {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.descripcion {
    padding: 1.5rem;
    line-height: 1.6;
}

.descripcion p {
    margin-bottom: 0.8rem;
}

.login-box {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background-color: #f9f9f9;
}

.login-title {
    font-weight: bold;
    color: #0056b3;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.login-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    align-items: center;
}

.login-label {
    width: 150px;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.login-options {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.form-check {
    display: flex;
    align-items: center;
}

.form-check-input {
    margin-right: 0.5rem;
}

.login-field {
    flex: 1;
    min-width: 200px;
}

.codigo-ejemplo {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.3rem;
}

.btn-acceder {
	color: #FFFFFF !important;
	background: #9ecc50 !important;
    border: none;
	width: 100%;
	font-weight:600;
	-webkit-transition: all 1200ms ease;
	-o-transition: all 1200ms ease;
	transition: all 1200ms ease;
}
.btn-acceder:hover {
	color: #FFFFFF !important;
	background: #09365F !important;
}

.btn-menu {
	color: #FFFFFF !important;
	background: #0056b3 !important;
    border: none;
	width: 100%;
	font-weight:600;
	-webkit-transition: all 1200ms ease;
	-o-transition: all 1200ms ease;
	transition: all 1200ms ease;
}
.btn-menu:hover {
	color: #FFFFFF !important;
	background: #9ecc50 !important;
}




.pie {
    background-color: #e9ecef;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
}

@media (max-width: 768px) {
    .contenedor-principal {
        margin: 0 1rem;
    }
    
    .cabecera-contenido {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-right: 0;
        margin-bottom: 10px;
        height: 35px;
    }
    
    .login-label {
        width: 100%;
        margin-bottom: 0.3rem;
    }
    
    .login-options {
        gap: 1rem;
    }
}



