﻿/*-----------------------------------------------------------------
	DEFINICIONES VARIAS
  ---------------------------------------------------------------*/
:root {
  --accent-color: #242C4F;
  --accent-color-f-w: #0077cc;
  --background-color: #eef3f8;
  --background-clear: #f5f7fa;
  --background-dark: #0f172a;
  --form-bg: #fff;
  --text-color: #172033;
  --input-bg: #fff;
  --button-bg: #172033;
  --button-hover: #2875de;
  --button-text: #fff;
  --border-color: #cfd8e3;
  --table-bg: #fff;
  --row-alt-bg: #f8fafc;
  --panel-bg: #fff;
  --panel-muted: #edf4fc;
  --shell-blue: #172033;
  --shell-blue-soft: #d9ebff;
  --success-bg: #e8f5e9;
  --success-text: #1b5e20;
  --danger-bg: #ffebee;
  --danger-text: #b71c1c;
}

.derecha {
  text-align: right;
}

h1 {
    color: #0070C0;
    font-weight: bold;
    margin-bottom: 2px;
    text-align: center;
	font-size: 16px;
}

h2 {
    color: #0070C0;
    font-weight: bold;
    margin-bottom: 2px;
    text-align: center;
	font-size: 22px;
}

h3 {
    color: #000000;
    font-weight: bold;
    margin-bottom: 1px;
    text-align: center;
	font-size: 22px;
}

.Col01 { color: #ffffff; }    /* Blanco */
.Col02 { color: #000000; }    /* Negro*/
.Col03 { color: #FF0000; }    /* Rojo*/
.Col04 { color: #ff7f00; }    /* Naranja*/
.Col05 { color: #242C4F; }    /* Azul Oscuro*/
.Col06 { color: #0000FF; }    /* Azul Francia*/
.Col07 { color: #0070C0; }    /* Azul Cobalto*/
.Col08 { color: #008c00; }    /* Verde Oscuro*/
.Col09 { color: #00ff00; }    /* Verde Fluo*/
.Col10 { color: #00ffff; }    /* Turquesa Celeste*/
.Col11 { color: #00ffbf; }    /* Turquesa Verdoso*/
.Col12 { color: #5900B2; }    /* Violeta Oscuro*/
.Col13 { color: #7f00ff; }    /* Violeta*/
.Col14 { color: #D900D9; }    /* Fucsia Oscuro*/
.Col15 { color: #FF26FF; }    /* Fucsia*/
.Col16 { color: #ffffff; }    /* Xxxxxxx*/



.bloque-comandos {
  white-space: pre-wrap; /* respeta espacios y saltos */
  font-family: Arial; /* o la que uses en tu sitio */
  font-size: 14px;
  font-weight:bold;
  color: #003366;
  background-color: #F8FBFC;
  padding: 5px 10px;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(102, 178, 255, 0.3);
  line-height: 1.0;
  box-sizing: border-box;
  width: 95%;
  max-width: 900px;
  min-height: 100%;
  height: auto;
  margin: 10px auto; /* centra horizontal */
}

.bloque-comandos p {
  margin: 1px 0;
}


.bloque-comandos-pr {
  white-space: pre-wrap; /* respeta espacios y saltos */
  font-family: Arial;
  font-size: 14px;
  font-weight: bold;
  color: #003366;
  background-color: #F8FBFC;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(102, 178, 255, 0.3);

  width: 95%;
  max-width: 900px;
  box-sizing: border-box;
  min-height: 100%;
  height: auto;
  margin: 20px auto;

  
  line-height: 1.0;
}

.bloque-comandos-pr p {
  margin: 2px 0;
}

.bloque-comandos-pr1 {
  white-space: pre-wrap; /* respeta espacios y saltos */
  font-family: Arial;
  font-size: 12px;
  font-weight: bold;
  color: #003366;
  background-color: #F8FBFC;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(102, 178, 255, 0.3);

  width: 95%;
  max-width: 900px;
  margin: 20px auto;

  
  line-height: 1.0;
}

.bloque-comandos-pr1 p {
  margin: 2px 0;
}
/*-----------------------------------------------------------------
	BODY DOCUMENTAL
  ---------------------------------------------------------------*/
body.clear2b {
  font-family: Arial;
  font-weight: bold;
  background: var(--background-clear);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.4;
}
/*-----------------------------------------------------------------
	BUSCADOR
  ---------------------------------------------------------------*/
.buscador-palabra {
  display: flex;
  gap: 10px;
  width: min(1180px, 96%);
  margin: 0 auto 15px;
  padding: 10px 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(238, 243, 248, 0.96);
  border: 1px solid var(--border-color);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 18px rgba(23, 32, 51, 0.08);
  box-sizing: border-box;
}

.input-busqueda {
  padding: 6px 12px;
  font-size: 14px;
  border: 1px solid #66b2ff;
  border-radius: 6px;
  background-color: #fff;
  color: #003366;
  box-shadow: 0 0 4px rgba(102, 178, 255, 0.5);
  transition: all 0.3s ease;
}

.input-busqueda:focus {
  outline: none;
  box-shadow: 0 0 6px rgba(102, 178, 255, 0.8);
}

.boton-busqueda {
  padding: 6px 16px;
  font-size: 14px;
  border: 1px solid #66b2ff;
  border-radius: 6px;
  background: linear-gradient(to bottom, #cceeff, #99ccff);
  color: #003366;
  box-shadow: 0 0 6px rgba(102, 178, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.boton-busqueda:hover {
  background: linear-gradient(to bottom, #99ccff, #66b2ff);
  box-shadow: 0 0 8px rgba(102, 178, 255, 0.9);
  color: #000;
}



.resaltado {
  background-color: #a0f0e0; /* o el que elijas */
  font-weight: bold;
  padding: 2px 4px;
  border-radius: 4px;
}

.resaltado-activo {
  background-color: #ffdf6e;
  color: #001f3f;
  outline: 2px solid #e0a800;
}

.contador-busqueda {
  min-width: 80px;
  color: #003366;
  font-weight: bold;
  text-align: center;
}

#contenido {
  scroll-margin-top: 86px;
}

.resaltado,
.resaltado-activo {
  scroll-margin-top: 86px;
}

/*-----------------------------------------------------------------
	SHELL SIP
  ---------------------------------------------------------------*/
body.sip-shell {
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #eef3f8;
  color: #172033;
}

.sip-topbar {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  background: #172033;
  color: #fff;
  border-bottom: 3px solid #2875de;
}

.sip-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.sip-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 0;
  flex: 0 0 auto;
}

.sip-brand strong,
.sip-brand span {
  display: block;
}

.sip-brand strong {
  font-size: 16px;
  line-height: 1.1;
}

.sip-brand span {
  font-size: 12px;
  color: #dbe7f6;
}

.sip-session {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12px;
}

.sip-session span,
.sip-logout,
#sip-open-module {
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 7px 10px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.sip-logout {
  background: #e8f1ff;
  color: #172033;
  font-weight: 700;
}

.sip-layout {
  height: calc(100vh - 67px);
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}

.sip-sidebar {
  overflow-y: auto;
  background: #f8fafc;
  border-right: 1px solid #cfd8e3;
  padding: 12px;
}

.sip-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sip-nav-group {
  border: 1px solid #d9e2ee;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.sip-nav-group summary {
  cursor: pointer;
  padding: 10px 12px;
  color: #172033;
  font-weight: 700;
  list-style-position: inside;
  background: #edf4fc;
}

.sip-nav-items {
  display: grid;
  gap: 4px;
  padding: 8px;
}

.sip-nav-link {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  color: #1d3557;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.25;
}

.sip-nav-link:hover,
.sip-nav-link.activo {
  background: #d9ebff;
  color: #0a3f78;
}

.sip-main {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-width: 0;
  background: #eef3f8;
}

.sip-contentbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid #cfd8e3;
  background: #fff;
}

.sip-contentbar span {
  display: block;
  color: #5a6b80;
  font-size: 11px;
  text-transform: uppercase;
}

.sip-contentbar strong {
  color: #172033;
  font-size: 15px;
}

#sip-open-module {
  color: #172033;
  background: #eef3f8;
  border-color: #cfd8e3;
  font-size: 13px;
  font-weight: 700;
}

#sip-content {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

@media (max-width: 900px) {
  body.sip-shell {
    overflow: auto;
  }

  .sip-topbar {
    height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 12px;
  }

  .sip-session {
    justify-content: flex-start;
  }

  .sip-layout {
    height: auto;
    min-height: calc(100vh - 120px);
    grid-template-columns: 1fr;
  }

  .sip-sidebar {
    max-height: 280px;
    border-right: 0;
    border-bottom: 1px solid #cfd8e3;
  }

  .sip-main {
    min-height: 720px;
  }
}

/*-----------------------------------------------------------------
	XXXXXXXXXXX
  ---------------------------------------------------------------*/

/*-----------------------------------------------------------------
	UNIFICACION VISUAL SIP
  ---------------------------------------------------------------*/
html {
  background: var(--background-color);
}

body:not(.sip-shell):not(.sip-login-page) {
  margin: 0 !important;
  padding: 18px !important;
  min-height: 100vh;
  box-sizing: border-box;
  background: var(--background-color) !important;
  color: var(--text-color) !important;
  font-family: "Segoe UI", Arial, sans-serif !important;
  font-size: 14px;
  line-height: 1.45;
}

body:not(.sip-shell):not(.sip-login-page) > h1,
body:not(.sip-shell):not(.sip-login-page) > h2,
body:not(.sip-shell):not(.sip-login-page) > h3 {
  width: min(1180px, 96%);
  margin: 0 auto 14px auto !important;
  padding: 12px 14px;
  box-sizing: border-box;
  color: var(--shell-blue) !important;
  text-align: left !important;
  font-weight: 700 !important;
  letter-spacing: 0;
}

body:not(.sip-shell):not(.sip-login-page) > h1 {
  font-size: 20px !important;
}

body:not(.sip-shell):not(.sip-login-page) > h2 {
  font-size: 18px !important;
}

body:not(.sip-shell):not(.sip-login-page) > h3 {
  font-size: 16px !important;
}

body:not(.sip-shell):not(.sip-login-page) > h2 img {
  display: block;
  max-width: 260px;
  width: auto;
  height: auto;
  margin: 0 auto;
}

.form-container,
.contenedor,
.bloque-turno,
.mensaje,
.mensaje-error,
.mensaje-exito,
.mensaje-ok,
body:not(.sip-shell):not(.sip-login-page) > form {
  background: var(--panel-bg) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 22px rgba(23, 32, 51, 0.08) !important;
}

.form-container,
.contenedor,
body:not(.sip-shell):not(.sip-login-page) > form {
  width: min(1040px, 96%) !important;
  max-width: 1040px !important;
  margin: 0 auto 18px auto !important;
  padding: 18px !important;
  box-sizing: border-box !important;
}

.form-container {
  width: min(460px, 96%) !important;
}

.formulario,
.form-inline {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
  gap: 12px !important;
  overflow: visible !important;
}

.formulario .campo,
.form-inline .campo,
form .campo {
  min-width: 170px;
}

label,
.campo label {
  display: block;
  margin: 0 0 5px 0 !important;
  color: #31445f !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

input[type="text"],
input[type="password"],
input[type="date"],
input[type="time"],
input[type="number"],
input[type="email"],
select,
textarea {
  width: 100% !important;
  min-height: 36px;
  box-sizing: border-box;
  padding: 8px 10px !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 6px !important;
  background: var(--input-bg) !important;
  color: var(--text-color) !important;
  box-shadow: none !important;
  font-family: "Segoe UI", Arial, sans-serif !important;
  font-size: 13px !important;
}

textarea {
  min-height: 96px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(40, 117, 222, 0.22) !important;
  border-color: #2875de !important;
}

button,
input[type="submit"],
.export-btn,
.boton-finalizar,
.boton-busqueda,
.sip-action {
  min-height: 36px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 13px !important;
  border: 1px solid var(--shell-blue) !important;
  border-radius: 6px !important;
  background: var(--button-bg) !important;
  color: var(--button-text) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  text-decoration: none !important;
  box-shadow: none !important;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease !important;
}

button:hover,
input[type="submit"]:hover,
.export-btn:hover,
.boton-finalizar:hover,
.boton-busqueda:hover,
.sip-action:hover {
  background: var(--button-hover) !important;
  border-color: var(--button-hover) !important;
  color: #fff !important;
  transform: none !important;
}

table,
.tabla-consulta,
.tabla-perfil {
  width: min(1180px, 96%) !important;
  margin: 0 auto 20px auto !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  background: var(--table-bg) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 22px rgba(23, 32, 51, 0.08) !important;
  overflow: hidden;
}

th {
  background: var(--shell-blue) !important;
  color: #fff !important;
  padding: 10px 12px !important;
  font-size: 12px !important;
  text-transform: uppercase;
  letter-spacing: 0;
  border-bottom: 1px solid var(--shell-blue) !important;
}

td {
  background: #fff !important;
  color: var(--text-color) !important;
  padding: 9px 12px !important;
  border-bottom: 1px solid #e6edf5 !important;
  font-size: 13px !important;
  vertical-align: middle;
}

tr:nth-child(even) td {
  background: var(--row-alt-bg) !important;
}

td form,
tr form {
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.bloque-turno {
  width: min(1180px, 96%) !important;
  max-width: 1180px !important;
  margin: 0 auto 18px auto !important;
  padding: 16px !important;
}

.encabezado-turno {
  background: var(--panel-muted) !important;
  color: var(--shell-blue) !important;
  border: 1px solid var(--border-color);
  border-radius: 6px !important;
}

.encabezado-turno:hover {
  background: var(--shell-blue-soft) !important;
}

.contenido-turno {
  padding-top: 12px !important;
}

.mensaje,
.mensaje-error,
.mensaje-exito,
.mensaje-ok {
  width: min(680px, 96%) !important;
  margin: 18px auto !important;
  padding: 14px 16px !important;
  text-align: center;
  font-weight: 700;
}

.mensaje-error {
  background: var(--danger-bg) !important;
  color: var(--danger-text) !important;
  border-color: #ffcdd2 !important;
}

.mensaje-exito,
.mensaje-ok,
.exito {
  background: var(--success-bg) !important;
  color: var(--success-text) !important;
  border-color: #c8e6c9 !important;
}

.error {
  background: var(--danger-bg) !important;
  color: var(--danger-text) !important;
  border-color: #ffcdd2 !important;
}

.sin-eventos {
  color: #5a6b80 !important;
}

.grid-2 {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
  gap: 12px !important;
}

.bloque-comandos,
.bloque-comandos-pr,
.bloque-comandos-pr1,
.container1,
.container2 {
  width: min(1180px, 96%) !important;
  max-width: 1180px !important;
  height: auto !important;
  min-height: 0 !important;
  box-sizing: border-box;
  overflow: visible !important;
  background: #fff !important;
  border: 1px solid var(--border-color);
  color: #172033 !important;
  box-shadow: 0 8px 22px rgba(23, 32, 51, 0.08) !important;
  line-height: 1.25 !important;
}

.container1,
.container2 {
  margin: 12px auto !important;
  padding: 16px !important;
  box-sizing: border-box;
  border-radius: 8px !important;
}

.paginacion,
.pagination {
  width: min(1180px, 96%);
  margin: 12px auto;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.paginacion a,
.pagination a {
  padding: 7px 10px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: #fff;
  color: var(--shell-blue);
  text-decoration: none;
}

@media (max-width: 720px) {
  body:not(.sip-shell):not(.sip-login-page) {
    padding: 10px !important;
  }

  .formulario,
  .form-inline,
  body:not(.sip-shell):not(.sip-login-page) > form,
  .form-container form,
  .contenedor > form {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  table,
  .tabla-consulta,
  .tabla-perfil {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/*-----------------------------------------------------------------
  ACCESO SIP
  ---------------------------------------------------------------*/
body.sip-login-page {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow-x: hidden;
  margin: 0 !important;
  padding: clamp(24px, 5vw, 72px) !important;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 12% 18%, rgba(40, 117, 222, 0.28) 0, rgba(40, 117, 222, 0) 30%),
    radial-gradient(circle at 88% 82%, rgba(94, 157, 224, 0.18) 0, rgba(94, 157, 224, 0) 28%),
    linear-gradient(135deg, #0d1628 0%, #172033 48%, #203653 100%) !important;
  color: #172033;
}

body.sip-login-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.sip-login-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  overflow: hidden;
  box-sizing: border-box;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  box-shadow: 0 32px 90px rgba(3, 10, 24, 0.38);
}

.sip-login-identity {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(42px, 6vw, 68px);
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(74, 145, 235, 0.35), transparent 31%),
    linear-gradient(145deg, #172033 0%, #1b2f4b 58%, #24507b 100%);
}

.sip-login-identity::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -175px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 45px rgba(255, 255, 255, 0.025),
    0 0 0 90px rgba(255, 255, 255, 0.018);
}

.sip-login-identity-content {
  position: relative;
  z-index: 1;
  max-width: 420px;
}

.sip-login-eyebrow,
.sip-login-access-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sip-login-eyebrow {
  margin-bottom: 26px;
  color: #dbeaff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.sip-login-logo {
  display: block;
  width: 102px;
  height: 102px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.2));
}

.sip-login-title {
  margin: 0 !important;
  padding: 0 !important;
  color: #fff !important;
  font-size: clamp(58px, 7vw, 78px) !important;
  font-weight: 800 !important;
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-align: left !important;
}

.sip-login-name {
  max-width: 370px;
  margin: 16px 0 0;
  color: #fff;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.sip-login-intro {
  max-width: 390px;
  margin: 22px 0 0;
  color: #c7d8ed;
  font-size: 14px;
  line-height: 1.6;
}

.sip-login-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.sip-login-capabilities span {
  padding: 7px 11px;
  color: #e5f0ff;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  font-size: 11px;
  font-weight: 700;
}

.sip-login-access {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 62px);
  background:
    linear-gradient(145deg, rgba(238, 243, 248, 0.45), rgba(255, 255, 255, 0) 34%),
    #fff;
}

.sip-login-access-header {
  margin-bottom: 28px;
}

.sip-login-access-kicker {
  color: #1f67bb;
  background: #e9f3ff;
  border: 1px solid #cfe3fa;
}

.sip-login-access-header h2 {
  margin: 18px 0 7px;
  color: #172033;
  font-size: 32px;
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-align: left;
}

.sip-login-access-header p {
  margin: 0;
  color: #66788f;
  font-size: 14px;
  line-height: 1.55;
}

.sip-login-form {
  display: grid;
  gap: 18px;
}

.sip-login-field label {
  margin-bottom: 7px !important;
  color: #2d405a !important;
  font-size: 12px !important;
  letter-spacing: 0.02em;
}

.sip-login-field input[type="text"],
.sip-login-field input[type="password"] {
  min-height: 50px;
  padding: 11px 13px !important;
  border-color: #c9d5e3 !important;
  border-radius: 9px !important;
  font-size: 15px !important;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.sip-login-field input[type="text"]:focus,
.sip-login-field input[type="password"]:focus {
  outline: none !important;
  border-color: #2875de !important;
  box-shadow: 0 0 0 4px rgba(40, 117, 222, 0.12) !important;
}

.sip-login-submit {
  width: 100%;
  min-height: 50px;
  justify-content: space-between !important;
  margin-top: 3px;
  padding: 10px 16px !important;
  border-radius: 9px !important;
  background: linear-gradient(135deg, #172033, #24476e) !important;
  box-shadow: 0 10px 20px rgba(23, 32, 51, 0.18) !important;
  font-size: 14px !important;
}

.sip-login-submit:hover {
  background: linear-gradient(135deg, #1f67bb, #2875de) !important;
}

.sip-login-security {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 24px 0 0;
  color: #718196;
  font-size: 11px;
  line-height: 1.4;
}

.sip-login-security span {
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: #1f67bb;
  background: #e9f3ff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.sip-login-access .mensaje-error {
  width: 100% !important;
  margin: 0 0 20px !important;
  padding: 11px 13px !important;
  box-sizing: border-box;
  border-radius: 8px !important;
  box-shadow: none !important;
  text-align: left;
  font-size: 12px;
}

@media (max-width: 760px) {
  body.sip-login-page {
    place-items: start center;
    padding: 18px !important;
  }

  .sip-login-panel {
    width: min(560px, 100%);
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .sip-login-identity {
    padding: 30px;
  }

  .sip-login-eyebrow {
    margin-bottom: 18px;
  }

  .sip-login-logo {
    width: 76px;
    height: 76px;
    margin-bottom: 14px;
  }

  .sip-login-title {
    font-size: 50px !important;
  }

  .sip-login-name {
    max-width: none;
    margin-top: 10px;
    font-size: 19px;
  }

  .sip-login-intro {
    margin-top: 14px;
  }

  .sip-login-capabilities {
    margin-top: 18px;
  }

  .sip-login-access {
    padding: 30px;
  }
}

@media (max-height: 720px) and (min-width: 761px) {
  body.sip-login-page {
    padding: 24px !important;
  }

  .sip-login-panel {
    min-height: 480px;
  }

  .sip-login-identity,
  .sip-login-access {
    padding-top: 34px;
    padding-bottom: 34px;
  }
}
