﻿@charset "UTF-8";
/*==========================================================
    SAC - SAIRA Administration Console
    Archivo principal de estilos
==========================================================*/
/*==========================================================
    CONFIGURACIÓN
==========================================================*/
/*=====================================================
    SAC - SAIRA Administration Console
    Archivo: Variables.scss
=====================================================*/
/*=====================================================
    COLORES INSTITUCIONALES
=====================================================*/
/*=====================================================
    ESCALA DE GRISES
=====================================================*/
/*=====================================================
    MENSAJES
=====================================================*/
/*=====================================================
    SIDEBAR
=====================================================*/
/*=====================================================
    TOPBAR
=====================================================*/
/*=====================================================
    BOTONES
=====================================================*/
/*=====================================================
    INPUTS
=====================================================*/
/*=====================================================
    TARJETAS
=====================================================*/
/*=====================================================
    TABLAS
=====================================================*/
/*=====================================================
    SOMBRAS
=====================================================*/
/*=====================================================
    BORDES
=====================================================*/
/*=====================================================
    TRANSICIONES
=====================================================*/
/*=====================================================
    TIPOGRAFÍA
=====================================================*/
/*=====================================================
    ALTURAS
=====================================================*/
/*=====================================================
    LOGIN
=====================================================*/
/*=====================================================
    Z-INDEX
=====================================================*/
/*==========================================================
    BASE
==========================================================*/
/*=====================================================
    SAC - SAIRA Administration Console
    Archivo: General.scss
=====================================================*/
/*=====================================================
    SAC - SAIRA Administration Console
    Archivo: Variables.scss
=====================================================*/
/*=====================================================
    COLORES INSTITUCIONALES
=====================================================*/
/*=====================================================
    ESCALA DE GRISES
=====================================================*/
/*=====================================================
    MENSAJES
=====================================================*/
/*=====================================================
    SIDEBAR
=====================================================*/
/*=====================================================
    TOPBAR
=====================================================*/
/*=====================================================
    BOTONES
=====================================================*/
/*=====================================================
    INPUTS
=====================================================*/
/*=====================================================
    TARJETAS
=====================================================*/
/*=====================================================
    TABLAS
=====================================================*/
/*=====================================================
    SOMBRAS
=====================================================*/
/*=====================================================
    BORDES
=====================================================*/
/*=====================================================
    TRANSICIONES
=====================================================*/
/*=====================================================
    TIPOGRAFÍA
=====================================================*/
/*=====================================================
    ALTURAS
=====================================================*/
/*=====================================================
    LOGIN
=====================================================*/
/*=====================================================
    Z-INDEX
=====================================================*/
/*=====================================================
    RESET
=====================================================*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*=====================================================
    HTML
=====================================================*/
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

/*=====================================================
    BODY
=====================================================*/
body {
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #1E293B;
  background: #F5F7FA;
  overflow-x: hidden;
}

/*=====================================================
    SELECCIÓN
=====================================================*/
::selection {
  background: #4EC3E4;
  color: #FFFFFF;
}

/*=====================================================
    SCROLL
=====================================================*/
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #F5F7FA;
}

::-webkit-scrollbar-thumb {
  background: #BAC3CF;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: #4EC3E4;
}

/*=====================================================
    ENLACES
=====================================================*/
a {
  color: #4EC3E4;
  text-decoration: none;
  transition: 0.25s;
}

a:hover {
  color: #1D3557;
}

/*=====================================================
    IMÁGENES
=====================================================*/
img {
  max-width: 100%;
  display: block;
}

/*=====================================================
    TÍTULOS
=====================================================*/
h1 {
  font-size: 2rem;
  font-weight: 700;
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

h5 {
  font-size: 1.125rem;
  font-weight: 500;
}

h6 {
  font-size: 1rem;
  font-weight: 500;
}

/*=====================================================
    TEXTO
=====================================================*/
p {
  margin-bottom: 0;
  color: #4A5568;
  line-height: 1.6;
}

/*=====================================================
    CONTENEDOR
=====================================================*/
.Contenedor {
  width: 100%;
  margin: auto;
}

/*=====================================================
    TARJETAS
=====================================================*/
.Tarjeta {
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.08);
  border: 1px solid #D9DEE5;
  transition: 0.3s;
}

.Tarjeta:hover {
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1);
}

.Tarjeta__Encabezado {
  padding: 18px 24px;
  border-bottom: 1px solid #D9DEE5;
}

.Tarjeta__Contenido {
  padding: 24px;
}

.Tarjeta__Pie {
  padding: 18px 24px;
  border-top: 1px solid #D9DEE5;
}

/*=====================================================
    BOTONES
=====================================================*/
.BotónPrincipal {
  background: #4EC3E4;
  border: none;
  color: #FFFFFF;
  border-radius: 8px;
  padding: 10px 24px;
  font-weight: 600;
  transition: 0.25s;
}

.BotónPrincipal:hover {
  background: #35B5D8;
}

.BotónSecundario {
  background: #FEA321;
  color: white;
}

.BotónCancelar {
  background: white;
  border: 1px solid #D9DEE5;
}

.BotónCancelar:hover {
  background: #F7F7F7;
}

/*=====================================================
    INPUTS
=====================================================*/
.form-control {
  height: 50px;
  border-radius: 8px;
  border: 1px solid #D9DEE5;
  box-shadow: none;
  font-size: 0.875rem;
}

.form-control:focus {
  border-color: #4EC3E4;
  box-shadow: 0 0 0 0.2rem rgba(78, 195, 228, 0.2);
}

/*=====================================================
    LABEL
=====================================================*/
label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #4A5568;
}

/*=====================================================
    TABLAS
=====================================================*/
.table {
  margin-bottom: 0;
}

.table thead {
  background: #F4F6F9;
}

.table th {
  border-bottom: none;
  font-size: 0.813rem;
  text-transform: uppercase;
  color: #4A5568;
}

.table td {
  vertical-align: middle;
}

/*=====================================================
    BADGES
=====================================================*/
.Badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}

.BadgeCorrecto {
  background: rgba(34, 197, 94, 0.12);
  color: #22C55E;
}

.BadgeAdvertencia {
  background: rgba(245, 158, 11, 0.12);
  color: #F59E0B;
}

.BadgeError {
  background: rgba(239, 68, 68, 0.12);
  color: #EF4444;
}

/*=====================================================
    SOMBRAS
=====================================================*/
.SombraPequeña {
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.08);
}

.SombraMedia {
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1);
}

.SombraGrande {
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.15);
}

/*=====================================================
    UTILIDADES
=====================================================*/
.CursorPointer {
  cursor: pointer;
}

.Oculto {
  display: none !important;
}

.Centrado {
  text-align: center;
}

.Derecha {
  text-align: right;
}

.Izquierda {
  text-align: left;
}

/*=====================================================
    ANIMACIONES
=====================================================*/
@keyframes Aparición {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.AnimaciónAparición {
  animation: Aparición 0.35s ease;
}

/*==========================================================
    COMPONENTES
==========================================================*/
/*=====================================================
    SAC - SAIRA Administration Console
    Archivo: Variables.scss
=====================================================*/
/*=====================================================
    COLORES INSTITUCIONALES
=====================================================*/
/*=====================================================
    ESCALA DE GRISES
=====================================================*/
/*=====================================================
    MENSAJES
=====================================================*/
/*=====================================================
    SIDEBAR
=====================================================*/
/*=====================================================
    TOPBAR
=====================================================*/
/*=====================================================
    BOTONES
=====================================================*/
/*=====================================================
    INPUTS
=====================================================*/
/*=====================================================
    TARJETAS
=====================================================*/
/*=====================================================
    TABLAS
=====================================================*/
/*=====================================================
    SOMBRAS
=====================================================*/
/*=====================================================
    BORDES
=====================================================*/
/*=====================================================
    TRANSICIONES
=====================================================*/
/*=====================================================
    TIPOGRAFÍA
=====================================================*/
/*=====================================================
    ALTURAS
=====================================================*/
/*=====================================================
    LOGIN
=====================================================*/
/*=====================================================
    Z-INDEX
=====================================================*/
/*=====================================================
    BOTONES
=====================================================*/
.BotónPrincipal,
.BotónSecundario,
.BotónCorrecto,
.BotónAdvertencia,
.BotónPeligro,
.BotónClaro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 120px;
  height: 44px;
  padding: 0px 22px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  user-select: none;
}

.BotónPrincipal {
  background: #4EC3E4;
  color: white;
}

.BotónPrincipal:hover {
  background: #35B5D8;
  transform: translateY(-2px);
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1);
}

.BotónSecundario {
  background: #FEA321;
  color: white;
}

.BotónSecundario:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1);
}

.BotónClaro {
  background: white;
  color: #4A5568;
  border: 1px solid #D9DEE5;
}

.BotónClaro:hover {
  background: #F8F8F8;
}

/*=====================================================
    TARJETAS
=====================================================*/
.Tarjeta {
  background: white;
  border-radius: 22px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.08);
  border: 1px solid #D9DEE5;
  transition: 0.3s;
}

.Tarjeta:hover {
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1);
}

.Tarjeta__Encabezado {
  padding: 24px;
  border-bottom: 1px solid #D9DEE5;
}

.Tarjeta__Contenido {
  padding: 24px;
}

.Tarjeta__Pie {
  padding: 20px 24px;
  border-top: 1px solid #D9DEE5;
}

/*=====================================================
    FORMULARIOS
=====================================================*/
.Formulario {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.Formulario__Grupo {
  display: flex;
  flex-direction: column;
}

.Formulario__Etiqueta {
  margin-bottom: 8px;
  font-weight: 600;
  color: #4A5568;
}

.Formulario__Control {
  position: relative;
}

.Formulario__Icono {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #7B8794;
}

.Formulario__Input {
  width: 100%;
  height: 52px;
  border-radius: 14px;
  border: 1px solid #D9DEE5;
  background: white;
  padding-left: 50px;
  padding-right: 45px;
  transition: 0.25s;
  outline: none;
}

.Formulario__Input:focus {
  border-color: #4EC3E4;
  box-shadow: 0px 0px 0px 4px rgba(78, 195, 228, 0.15);
}

.Formulario__Mostrar {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #7B8794;
}

/*=====================================================
    ALERTAS
=====================================================*/
.Alerta {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  border-radius: 14px;
  margin-top: 15px;
}

.AlertaInformación {
  background: #EEF7FF;
  color: #0C63E7;
}

.AlertaAdvertencia {
  background: #FFF8E6;
  color: #C97A00;
}

.AlertaCorrecto {
  background: #EEFFF4;
  color: #1E8A45;
}

.AlertaError {
  background: #FFF1F1;
  color: #D92C2C;
}

/*=====================================================
    BADGES
=====================================================*/
.Badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.BadgeCorrecto {
  background: #E8FFF0;
  color: #0C8B45;
}

.BadgeAdvertencia {
  background: #FFF7E6;
  color: #D78A00;
}

.BadgeError {
  background: #FFF0F0;
  color: #D72F2F;
}

/*=====================================================
    SPINNER
=====================================================*/
.Cargando {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 4px solid #E5E5E5;
  border-top-color: #4EC3E4;
  animation: Girar 0.8s linear infinite;
}

@keyframes Girar {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*==========================================================
    MÓDULOS
==========================================================*/
/*=====================================================
    SAC - SAIRA Administration Console
    Archivo: Variables.scss
=====================================================*/
/*=====================================================
    COLORES INSTITUCIONALES
=====================================================*/
/*=====================================================
    ESCALA DE GRISES
=====================================================*/
/*=====================================================
    MENSAJES
=====================================================*/
/*=====================================================
    SIDEBAR
=====================================================*/
/*=====================================================
    TOPBAR
=====================================================*/
/*=====================================================
    BOTONES
=====================================================*/
/*=====================================================
    INPUTS
=====================================================*/
/*=====================================================
    TARJETAS
=====================================================*/
/*=====================================================
    TABLAS
=====================================================*/
/*=====================================================
    SOMBRAS
=====================================================*/
/*=====================================================
    BORDES
=====================================================*/
/*=====================================================
    TRANSICIONES
=====================================================*/
/*=====================================================
    TIPOGRAFÍA
=====================================================*/
/*=====================================================
    ALTURAS
=====================================================*/
/*=====================================================
    LOGIN
=====================================================*/
/*=====================================================
    Z-INDEX
=====================================================*/
/*=====================================================
    SAC - SAIRA Administration Console
    Archivo: Variables.scss
=====================================================*/
/*=====================================================
    COLORES INSTITUCIONALES
=====================================================*/
/*=====================================================
    ESCALA DE GRISES
=====================================================*/
/*=====================================================
    MENSAJES
=====================================================*/
/*=====================================================
    SIDEBAR
=====================================================*/
/*=====================================================
    TOPBAR
=====================================================*/
/*=====================================================
    BOTONES
=====================================================*/
/*=====================================================
    INPUTS
=====================================================*/
/*=====================================================
    TARJETAS
=====================================================*/
/*=====================================================
    TABLAS
=====================================================*/
/*=====================================================
    SOMBRAS
=====================================================*/
/*=====================================================
    BORDES
=====================================================*/
/*=====================================================
    TRANSICIONES
=====================================================*/
/*=====================================================
    TIPOGRAFÍA
=====================================================*/
/*=====================================================
    ALTURAS
=====================================================*/
/*=====================================================
    LOGIN
=====================================================*/
/*=====================================================
    Z-INDEX
=====================================================*/
/*=====================================================
    BOTONES
=====================================================*/
.BotónPrincipal,
.BotónSecundario,
.BotónCorrecto,
.BotónAdvertencia,
.BotónPeligro,
.BotónClaro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 120px;
  height: 44px;
  padding: 0px 22px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  user-select: none;
}

.BotónPrincipal {
  background: #4EC3E4;
  color: white;
}

.BotónPrincipal:hover {
  background: #35B5D8;
  transform: translateY(-2px);
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1);
}

.BotónSecundario {
  background: #FEA321;
  color: white;
}

.BotónSecundario:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1);
}

.BotónClaro {
  background: white;
  color: #4A5568;
  border: 1px solid #D9DEE5;
}

.BotónClaro:hover {
  background: #F8F8F8;
}

/*=====================================================
    TARJETAS
=====================================================*/
.Tarjeta {
  background: white;
  border-radius: 22px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.08);
  border: 1px solid #D9DEE5;
  transition: 0.3s;
}

.Tarjeta:hover {
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1);
}

.Tarjeta__Encabezado {
  padding: 24px;
  border-bottom: 1px solid #D9DEE5;
}

.Tarjeta__Contenido {
  padding: 24px;
}

.Tarjeta__Pie {
  padding: 20px 24px;
  border-top: 1px solid #D9DEE5;
}

/*=====================================================
    FORMULARIOS
=====================================================*/
.Formulario {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.Formulario__Grupo {
  display: flex;
  flex-direction: column;
}

.Formulario__Etiqueta {
  margin-bottom: 8px;
  font-weight: 600;
  color: #4A5568;
}

.Formulario__Control {
  position: relative;
}

.Formulario__Icono {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #7B8794;
}

.Formulario__Input {
  width: 100%;
  height: 52px;
  border-radius: 14px;
  border: 1px solid #D9DEE5;
  background: white;
  padding-left: 50px;
  padding-right: 45px;
  transition: 0.25s;
  outline: none;
}

.Formulario__Input:focus {
  border-color: #4EC3E4;
  box-shadow: 0px 0px 0px 4px rgba(78, 195, 228, 0.15);
}

.Formulario__Mostrar {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #7B8794;
}

/*=====================================================
    ALERTAS
=====================================================*/
.Alerta {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  border-radius: 14px;
  margin-top: 15px;
}

.AlertaInformación {
  background: #EEF7FF;
  color: #0C63E7;
}

.AlertaAdvertencia {
  background: #FFF8E6;
  color: #C97A00;
}

.AlertaCorrecto {
  background: #EEFFF4;
  color: #1E8A45;
}

.AlertaError {
  background: #FFF1F1;
  color: #D92C2C;
}

/*=====================================================
    BADGES
=====================================================*/
.Badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.BadgeCorrecto {
  background: #E8FFF0;
  color: #0C8B45;
}

.BadgeAdvertencia {
  background: #FFF7E6;
  color: #D78A00;
}

.BadgeError {
  background: #FFF0F0;
  color: #D72F2F;
}

/*=====================================================
    SPINNER
=====================================================*/
.Cargando {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 4px solid #E5E5E5;
  border-top-color: #4EC3E4;
  animation: Girar 0.8s linear infinite;
}

@keyframes Girar {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*=====================================================
    SEGURIDAD
=====================================================*/
body.Login {
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(78, 195, 228, 0.18) 0%, transparent 30%), radial-gradient(circle at 90% 15%, rgba(254, 163, 33, 0.2) 0%, transparent 28%), radial-gradient(circle at 80% 85%, rgba(78, 195, 228, 0.12) 0%, transparent 25%), linear-gradient(135deg, #F7FAFC, #EEF5FA);
}

/*=====================================================
    CONTENEDOR
=====================================================*/
.Login {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

/*=====================================================
    TARJETA
=====================================================*/
.Login__Panel {
  width: 430px;
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  animation: Aparición 0.45s ease;
}

/*=====================================================
    LOGO
=====================================================*/
.Login__Logo {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.Login__Logo img {
  width: 90px;
}

/*=====================================================
    TITULOS
=====================================================*/
.Login__Titulo {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #1D3557;
  margin-bottom: 6px;
}

.Login__Subtitulo {
  text-align: center;
  color: #7B8794;
  font-size: 14px;
  margin-bottom: 35px;
  line-height: 24px;
}

/*=====================================================
    FORMULARIO
=====================================================*/
.Login__Formulario {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.Login__Opciones {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.Login__Recordar {
  display: flex;
  align-items: center;
  gap: 8px;
}

.Login__Ingresar {
  margin-top: 10px;
}

.Login__Ingresar .BotónPrincipal {
  width: 100%;
  height: 52px;
  font-size: 15px;
}

/*=====================================================
    MENSAJES
=====================================================*/
.Login__Noticias {
  margin-top: 35px;
  border-top: 1px solid #D9DEE5;
  padding-top: 25px;
}

.Login__NoticiasTitulo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #1D3557;
  font-weight: 600;
}

.Login__Noticia {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed #E8E8E8;
}

.Login__Noticia:last-child {
  border-bottom: none;
}

.Login__Icono {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(78, 195, 228, 0.12);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #4EC3E4;
  flex-shrink: 0;
}

.Login__Texto {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.Login__Texto strong {
  color: #1D3557;
  font-size: 13px;
}

.Login__Texto span {
  font-size: 13px;
  color: #7B8794;
  line-height: 20px;
}

/*=====================================================
    PIE
=====================================================*/
.Login__Pie {
  margin-top: 30px;
  border-top: 1px solid #D9DEE5;
  padding-top: 20px;
  text-align: center;
  color: #7B8794;
  font-size: 12px;
}

.Login__Pie div {
  margin-top: 5px;
}

/*=====================================================
    RESPONSIVE
=====================================================*/
@media (max-width: 768px) {
  .Login {
    padding: 20px;
  }
  .Login__Panel {
    width: 100%;
    padding: 30px;
  }
}
/*=====================================================
    FORMULARIO
=====================================================*/
.LoginFormulario {
  display: flex;
  flex-direction: column;
}

/*=====================================================
    GRUPOS
=====================================================*/
.LoginFormulario .FormularioGrupo {
  margin-bottom: 24px;
}

.LoginFormulario .FormularioEtiqueta {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #4A5568;
}

/*=====================================================
    CONTROLES
=====================================================*/
.LoginFormulario .FormularioControl {
  position: relative;
}

.LoginFormulario .FormularioIcono {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #9CA3AF;
  font-size: 16px;
  pointer-events: none;
}

.LoginFormulario .FormularioInput {
  width: 100%;
  height: 56px;
  border-radius: 14px;
  border: 1px solid #D7DCE3;
  background: #FFFFFF;
  padding-left: 50px;
  padding-right: 50px;
  font-size: 15px;
  color: #334155;
  transition: all 0.25s ease;
}

.LoginFormulario .FormularioInput::placeholder {
  color: #B8C0CC;
}

.LoginFormulario .FormularioInput:hover {
  border-color: #BAC5D3;
}

.LoginFormulario .FormularioInput:focus {
  border-color: #4EC3E4;
  box-shadow: 0 0 0 4px rgba(78, 195, 228, 0.15);
  outline: none;
}

/*=====================================================
    MOSTRAR CONTRASEÑA
=====================================================*/
.LoginMostrarContraseña {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #9CA3AF;
  cursor: pointer;
  transition: 0.25s;
  padding: 0;
}

.LoginMostrarContraseña:hover {
  color: #4EC3E4;
}

/*=====================================================
    OPCIONES
=====================================================*/
.LoginOpciones {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
  margin-bottom: 30px;
}

.LoginRecordar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #4A5568;
}

.LoginRecordar input {
  cursor: pointer;
}

.LoginRecuperar {
  font-size: 14px;
  text-decoration: none;
  color: #4EC3E4;
  transition: 0.25s;
}

.LoginRecuperar:hover {
  color: #1D3557;
}

/*=====================================================
    BOTÓN
=====================================================*/
.LoginBotón {
  width: 100%;
}

.LoginBotón .BotónPrincipal {
  width: 100%;
  height: 56px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.LoginBotón .BotónPrincipal i {
  font-size: 15px;
}

.LoginBotón .BotónPrincipal:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

/*=====================================================
    SEPARADOR
=====================================================*/
.LoginSeparador {
  position: relative;
  margin: 35px 0;
  text-align: center;
}

.LoginSeparador::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #E5E7EB;
}

.LoginSeparador span {
  position: relative;
  background: #FFFFFF;
  padding: 0 15px;
  color: #94A3B8;
  font-size: 13px;
}

/*=====================================================
    COMUNICADOS
=====================================================*/
.LoginComunicados {
  margin-top: 40px;
}

.LoginComunicadosTitulo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #1D3557;
  font-size: 15px;
  font-weight: 600;
}

.LoginComunicadosTitulo i {
  color: #4EC3E4;
  font-size: 18px;
}

.LoginComunicado {
  display: flex;
  gap: 15px;
  padding: 16px;
  margin-bottom: 15px;
  border-radius: 14px;
  background: #F7FBFE;
  border: 1px solid rgba(78, 195, 228, 0.18);
  transition: 0.25s;
}

.LoginComunicado:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.LoginComunicado:last-child {
  margin-bottom: 0;
}

.LoginComunicadoIcono {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background: rgba(78, 195, 228, 0.12);
  color: #4EC3E4;
  font-size: 18px;
}

.LoginComunicadoContenido {
  flex: 1;
}

.LoginComunicadoTitulo {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1D3557;
  margin-bottom: 4px;
}

.LoginComunicadoTexto {
  display: block;
  font-size: 13px;
  line-height: 21px;
  color: #7B8794;
}

.LoginComunicadoFecha {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #9CA3AF;
}

/*=====================================================
    PIE
=====================================================*/
.LoginPie {
  margin-top: 35px;
  padding-top: 22px;
  border-top: 1px solid #E5E7EB;
  text-align: center;
}

.LoginVersión {
  font-size: 13px;
  color: #64748B;
  margin-bottom: 5px;
}

.LoginCopyright {
  font-size: 12px;
  color: #94A3B8;
}

.LoginServidor {
  margin-top: 12px;
  font-size: 11px;
  color: #B0B8C5;
}

/*=====================================================
    ANIMACIONES
=====================================================*/
@keyframes LoginAparecer {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.LoginPanel {
  animation: LoginAparecer 0.45s ease;
}

/*=====================================================
    RESPONSIVE
=====================================================*/
@media (max-width: 992px) {
  .LoginPanel {
    width: 460px;
  }
}
@media (max-width: 768px) {
  .Login {
    padding: 30px;
  }
  .LoginPanel {
    width: 100%;
    padding: 40px;
  }
  .LoginTitulo {
    font-size: 38px;
  }
  .LoginSubtitulo {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .Login {
    padding: 20px;
  }
  .LoginPanel {
    padding: 30px;
    border-radius: 22px;
  }
  .LoginTitulo {
    font-size: 32px;
  }
  .LoginSubtitulo {
    font-size: 18px;
  }
  .FormularioInput {
    height: 52px;
  }
}
