@charset "UTF-8";
/* PALETA DE COLORES BASE - NESPRA */
:root {
  /* BASE COLORS */
  --white: #ffffff;
  --black: #000000;
  /* BLUE SCALE */
  --blue-0: #99A7E6;
  --blue-1: #8A97D8;
  --blue-2: #6B79BC;
  --blue-3: #4B5AA1;
  --blue-4: #2C3C85;
  --blue-5: #0D1D69;
  --blue-6: #0A1754;
  --blue-7: #08113F;
  --blue-8: #050C2A;
  --blue-9: #030615;
  /* CYAN SCALE */
  --cyan-0: #ebfdff;
  --cyan-1: #a2f1ff;
  --cyan-2: #63e4fd;
  --cyan-3: #1ccef4;
  --cyan-4: #00b9e4;
  --cyan-5: #038cb7;
  --cyan-6: #0a7094;
  --cyan-7: #125b78;
  --cyan-8: #144c65;
  --cyan-9: #063146;
  /* BRAND */
  --color-primary: #0D1D69;
  --color-secondary: #00b9e4;
  /* TEXT */
  --text-primary: #063146;
  --text-secondary: #696D80;
  --text-muted: #8991B4;
  --text-link: #4B5AA1;
  /* BACKGROUND */
  --bg-main: #ffffff;
  --bg-alt: #F3F3F3;
  --bg-selected: #D2D5E2;
  /* BORDER */
  --border-default: rgba(0, 0, 0, 0.7);
  /* HOVER / STATES */
  --bg-hover: rgba(238, 239, 246, 1);
  --bg-hover-light: rgba(240, 240, 240, 0.5);
  /* BUTTON */
  --btn-bg: var(--color-primary);
  --btn-hover: var(--blue-3);
  --btn-active: var(--blue-6);
  --btn-text: var(--white);
  /* TABLE */
  --bg-table-header: rgba(210, 213, 226, 0.1);
  /* SUCCESS SCALE */
  --success-50: #f2fbf3;
  --success-100: #e2f6e4;
  --success-200: #c6ecca;
  --success-300: #98dda1;
  --success-400: #74ca80;
  --success-500: #3fa84e;
  --success-600: #2f8a3c;
  --success-700: #286d32;
  --success-800: #24572c;
  --success-900: #1f4826;
  --success-950: #0c2711;
  /* WARNING SCALE */
  --warning-50: #fefbec;
  --warning-100: #fcf5c9;
  --warning-200: #f8e98f;
  --warning-300: #f5d754;
  --warning-400: #f3ca3e;
  --warning-500: #eba615;
  --warning-600: #d0800f;
  --warning-700: #ad5c10;
  --warning-800: #8c4714;
  --warning-900: #743b13;
  --warning-950: #421e06;
  /* ERROR SCALE */
  --error-50: #fef2f2;
  --error-100: #fde3e3;
  --error-200: #fccccd;
  --error-300: #f9a8a9;
  --error-400: #f37678;
  --error-500: #ea5658;
  --error-600: #d52d2f;
  --error-700: #b32224;
  --error-800: #942022;
  --error-900: #7b2122;
  --error-950: #430c0d;
}

/*_typography-legacy.scss */
.title_device_info {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-primary);
  padding-left: 0;
}

.data_range_text {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  padding-left: 0;
}

/* MUTED / SECONDARY */
.text-muted {
  color: var(--text-muted);
}

/* LABELS */
.label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* TIPOGRAFÍA NESPRA FIGMA */
/* RESET TIPOGRÁFICO GLOBAL */
body {
  font-family: var(--ns-font);
  font-size: var(--ns-b1-size);
  line-height: var(--ns-b1-line);
  font-weight: var(--ns-b1-weight);
  color: var(--text-primary);
}

/* Elementos base */
p {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: inherit;
}

/* BASE TEXT */
.ns-text, .ns-ovl, .ns-cap, .text-muted,
.small, .ns-btn, .ns-body, .ns-b2, .ns-inline-text, .form-check-label, .ns-loading, .ns-b1, .ns-subtitle, .ns-s2, .ns-s1, .title_text_inventory,
.card-title, .ns-section-title, .ns-heading, .ns-h6, .ns-h5, .ns-h4, .ns-h3, .ns-h2, .ns-h1 {
  font-family: var(--ns-font);
  margin: 0;
}

/* Headings */
/* BASE OPCIONAL (RECOMENDADO)*/
.ns-heading, .ns-h6, .ns-h5, .ns-h4, .ns-h3, .ns-h2, .ns-h1 {
  color: var(--text-heading);
}

.ns-h1 {
  font-size: var(--ns-h1-size);
  line-height: var(--ns-h1-line);
  font-weight: var(--ns-h1-weight);
  letter-spacing: var(--ns-h1-ls);
}

.ns-h2 {
  font-size: var(--ns-h2-size);
  line-height: var(--ns-h2-line);
  font-weight: var(--ns-h2-weight);
  letter-spacing: var(--ns-h2-ls);
}

.ns-h3 {
  font-size: var(--ns-h3-size);
  line-height: var(--ns-h3-line);
  font-weight: var(--ns-h3-weight);
  letter-spacing: var(--ns-h3-ls);
}

.ns-h4 {
  font-size: var(--ns-h4-size);
  line-height: var(--ns-h4-line);
  font-weight: var(--ns-h4-weight);
  letter-spacing: var(--ns-h4-ls);
}

.ns-h5 {
  font-size: var(--ns-h5-size);
  line-height: var(--ns-h5-line);
  font-weight: var(--ns-h5-weight);
  letter-spacing: var(--ns-h5-ls);
}

.ns-h6 {
  font-size: var(--ns-h6-size);
  line-height: var(--ns-h6-line);
  font-weight: var(--ns-h6-weight);
  letter-spacing: var(--ns-h6-ls);
  margin-bottom: 5px;
}

/* BASE (opcional recomendado) */
.ns-subtitle, .ns-s2, .ns-s1, .title_text_inventory,
.card-title, .ns-section-title {
  color: var(--color-primary);
}

.ns-s1, .title_text_inventory,
.card-title, .ns-section-title {
  font-size: var(--ns-s1-size);
  line-height: var(--ns-s1-line);
  font-weight: var(--ns-s1-weight);
  letter-spacing: var(--ns-s1-ls);
}

.ns-s2 {
  font-size: var(--ns-s2-size);
  line-height: var(--ns-s2-line);
  font-weight: var(--ns-s2-weight);
  letter-spacing: var(--ns-s2-ls);
}

/* Body */
.ns-body, .ns-b2, .ns-inline-text, .form-check-label, .ns-loading, .ns-b1 {
  color: var(--text-primary);
}

.ns-b1 {
  font-size: var(--ns-b1-size);
  line-height: var(--ns-b1-line);
  font-weight: var(--ns-b1-weight);
  letter-spacing: var(--ns-b1-ls);
}

.ns-b2, .ns-inline-text, .form-check-label, .ns-loading {
  font-size: var(--ns-b2-size);
  line-height: var(--ns-b2-line);
  font-weight: var(--ns-b2-weight);
  letter-spacing: var(--ns-b2-ls);
}

/* BUTTON TEXT */
.ns-btn {
  font-size: var(--ns-btn-size);
  line-height: var(--ns-btn-line);
  font-weight: var(--ns-btn-weight);
  letter-spacing: var(--ns-btn-ls);
  color: var(--btn-primary-text);
  text-transform: none;
}

/* CAPTION */
.ns-cap, .text-muted,
.small {
  font-size: var(--ns-cap-size);
  line-height: var(--ns-cap-line);
  font-weight: var(--ns-cap-weight);
  letter-spacing: var(--ns-cap-ls);
  color: var(--text-secondary);
}

.ns-ovl {
  font-size: var(--ns-ovl-size);
  line-height: var(--ns-ovl-line);
  font-weight: var(--ns-ovl-weight);
  letter-spacing: var(--ns-ovl-ls);
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Utilidades */
.ns-loading {
  color: var(--text-secondary);
  letter-spacing: 0.3px;
}

.ns-text-italic {
  font-style: italic;
}

.ns-icon-info {
  margin-left: 10px;
  color: var(--icon-active);
}

/* Form label */
.ns-label, .label-help, .modal_form_label,
.label_actuation {
  font-family: var(--ns-font);
  font-size: var(--ns-label-size);
  line-height: var(--ns-label-line);
  font-weight: var(--ns-label-weight);
  letter-spacing: var(--ns-label-ls);
  color: var(--text-primary);
  display: block;
  margin-bottom: 6px;
}

.ns-helper-text {
  font-family: var(--ns-font);
  font-size: var(--ns-helper-size);
  line-height: var(--ns-helper-line);
  font-weight: var(--ns-helper-weight);
  letter-spacing: var(--ns-helper-ls);
  color: var(--text-secondary);
  margin-top: 4px;
}

/* =========================
   LEGACY → NESPRA BRIDGE
========================= */
.ns-section-title {
  font-size: var(--ns-fs-19);
  font-weight: var(--ns-w-semibold);
  color: var(--color-primary);
  margin: 0;
  padding-bottom: 8px;
}

/* Labels */
/* Titles */
/* Small text */
/* Checkbox labels */
.label-help {
  color: var(--color-primary);
}

.ns-inline-text {
  padding-left: 8px;
}

/* NESPRA — TYPOGRAPHY TOKENS */
:root {
  /* ---------- Base tokens ---------- */
  /* Font family */
  --ns-font: 'Inter', sans-serif;
  /* Font weights */
  --ns-w-light: 300;
  --ns-w-regular: 400;
  --ns-w-medium: 500;
  --ns-w-semibold: 600;
  /* Font sizes */
  --ns-fs-93: 93px;
  --ns-fs-58: 58px;
  --ns-fs-47: 47px;
  --ns-fs-33: 33px;
  --ns-fs-23: 23px;
  --ns-fs-19: 19px;
  --ns-fs-16: 16px;
  --ns-fs-14: 14px;
  --ns-fs-12: 12px;
  --ns-fs-10: 10px;
  /* Line heights */
  --ns-lh-100: 100px;
  --ns-lh-64: 64px;
  --ns-lh-52: 52px;
  --ns-lh-40: 40px;
  --ns-lh-28: 28px;
  --ns-lh-24: 24px;
  --ns-lh-20: 20px;
  --ns-lh-16: 16px;
  /* Letter spacing */
  --ns-ls-neg-15: -1.5px;
  --ns-ls-neg-05: -0.5px;
  --ns-ls-0: 0;
  --ns-ls-015: 0.15px;
  --ns-ls-025: 0.25px;
  --ns-ls-03: 0.3px;
  --ns-ls-04: 0.4px;
  --ns-ls-125: 1.25px;
  --ns-ls-15: 1.5px;
  /* ---------- Semantic tokens ---------- */
  /* Headings */
  --ns-h1-size: clamp(32px, 5vw, 93px);
  --ns-h1-line: var(--ns-lh-100);
  --ns-h1-weight: var(--ns-w-semibold);
  --ns-h1-ls: var(--ns-ls-neg-15);
  --ns-h2-size: clamp(28px, 4vw, 58px);
  --ns-h2-line: var(--ns-lh-64);
  --ns-h2-weight: var(--ns-w-semibold);
  --ns-h2-ls: var(--ns-ls-neg-05);
  --ns-h3-size: var(--ns-fs-47);
  --ns-h3-line: var(--ns-lh-52);
  --ns-h3-weight: var(--ns-w-semibold);
  --ns-h3-ls: var(--ns-ls-0);
  --ns-h4-size: var(--ns-fs-33);
  --ns-h4-line: var(--ns-lh-40);
  --ns-h4-weight: var(--ns-w-semibold);
  --ns-h4-ls: var(--ns-ls-025);
  --ns-h5-size: var(--ns-fs-23);
  --ns-h5-line: var(--ns-lh-28);
  --ns-h5-weight: var(--ns-w-semibold);
  --ns-h5-ls: var(--ns-ls-0);
  --ns-h6-size: var(--ns-fs-19);
  --ns-h6-line: var(--ns-lh-24);
  --ns-h6-weight: var(--ns-w-semibold);
  --ns-h6-ls: var(--ns-ls-015);
  /* Subtitles */
  --ns-s1-size: var(--ns-fs-16);
  --ns-s1-line: var(--ns-lh-24);
  --ns-s1-weight: var(--ns-w-semibold);
  --ns-s1-ls: var(--ns-ls-015);
  --ns-s2-size: var(--ns-fs-14);
  --ns-s2-line: var(--ns-lh-20);
  --ns-s2-weight: var(--ns-w-semibold);
  --ns-s2-ls: var(--ns-ls-015);
  /* Body */
  --ns-b1-size: var(--ns-fs-16);
  --ns-b1-line: var(--ns-lh-24);
  --ns-b1-weight: var(--ns-w-regular);
  --ns-b1-ls: var(--ns-ls-015);
  --ns-b2-size: var(--ns-fs-14);
  --ns-b2-line: var(--ns-lh-20);
  --ns-b2-weight: var(--ns-w-regular);
  --ns-b2-ls: var(--ns-ls-025);
  /* Button */
  --ns-btn-size: var(--ns-fs-14);
  --ns-btn-line: var(--ns-lh-16);
  --ns-btn-weight: var(--ns-w-medium);
  --ns-btn-ls: var(--ns-ls-03);
  /* Caption / Overline */
  --ns-cap-size: var(--ns-fs-12);
  --ns-cap-line: var(--ns-lh-16);
  --ns-cap-weight: var(--ns-w-regular);
  --ns-cap-ls: var(--ns-ls-04);
  --ns-ovl-size: var(--ns-fs-10);
  --ns-ovl-line: var(--ns-lh-16);
  --ns-ovl-weight: var(--ns-w-regular);
  --ns-ovl-ls: var(--ns-ls-125);
  /* NEW: UI labels */
  --ns-label-size: 13px;
  --ns-label-line: 18px;
  --ns-label-weight: 500;
  --ns-label-ls: 0.3px;
  /* NEW: UI helper text */
  --ns-helper-size: 12px;
  --ns-helper-line: 16px;
  --ns-helper-weight: 400;
  --ns-helper-ls: 0.25px;
}

.cp-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: var(--bg-main);
  padding: 20px;
}

.cp-form {
  width: 100%;
  max-width: 480px;
  padding: 42px;
  border-radius: 16px;
  display: flex;
  background: var(--bg-main);
  flex-direction: column;
  align-items: center;
}

.cp-logo img {
  width: 140px;
  margin-bottom: 26px;
}

.cp-label {
  font-size: 13px;
  font-weight: 500;
  color: #4A4A4A;
  display: block;
  margin-bottom: 6px;
}

.cp-input {
  width: 100%;
  height: 44px;
  border: 1px solid #D0D4E4;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 14px;
  background: #fff;
  transition: all 0.2s ease;
}
.cp-input:focus {
  border-color: #0D1D69;
  box-shadow: none;
  outline: none;
}

.cp-field {
  width: 100%;
  margin-bottom: 18px;
}

.cp-btn {
  width: 100%;
  height: 44px;
  background: #0D1D69;
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  cursor: pointer;
  margin-top: 10px;
}
.cp-btn:hover {
  background: #1a2b80;
}
.cp-btn:active {
  transform: scale(0.98);
}

.cp-btn::-moz-focus-inner {
  border: 0 !important;
}

.cp-alert {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 16px;
}

.cp-alert-info {
  background: #EEF4FF;
  color: #0D1D69;
  outline-offset: -1px;
}

.cp-alert-warning {
  background: #fff3d2;
  color: #8a5b00;
}

.cp-error {
  color: #c33;
  font-size: 12px;
  margin-top: 3px;
}

@media (max-width: 1024px) {
  #vertical_banner_column {
    background: var(--bg-surface);
  }
  .cp-form {
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
    padding: 32px 24px;
  }
  .cp-logo img {
    width: 110px;
    margin-top: 20px;
  }
}
.footer_not_logged {
  padding: 10px;
  border-top: 1px solid #E0E0E0;
}

.footer_not_logged_text {
  padding: 10px;
  color: var(--text-secondary);
  margin-bottom: 0px !important;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
}

.cp-logo > #nespra_logo {
  height: 100px;
}

.label-row-reset {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
}

.toggle-password {
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  color: #0D1D69;
  transition: 0.2s;
}
.toggle-password:hover {
  opacity: 0.7;
}

/* ALERT BASE */
.alert {
  font-size: 12px;
  line-height: 1.5;
}

.custom-alert {
  position: relative;
  padding: 14px 44px 14px 48px;
  border-radius: 8px;
  border: 1px solid;
  font-size: 12px;
  line-height: 1.5;
  align-items: flex-start;
  word-break: break-word;
}

.custom-alert a {
  font-weight: 500;
  text-decoration: underline;
}

/* ICONO */
.custom-alert::before {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

/* SEPARADOR */
.custom-alert::after {
  content: "";
  position: absolute;
  right: 38px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: currentColor;
  opacity: 0.4;
}

/* CLOSE BUTTON */
.alert-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  opacity: 0.6;
}

.alert-close:hover {
  opacity: 1;
}

/* TIPOS DE ALERTA */
.alert-info {
  background: var(--alert-info-bg);
  border-color: var(--alert-info-border);
  color: var(--alert-info-text);
}

.alert-info::before {
  content: "i";
}

.alert-warning {
  background: var(--alert-warning-bg);
  border-color: var(--alert-warning-border);
  color: var(--alert-warning-text);
}

.alert-warning::before {
  content: "!";
}

.alert-danger {
  background: var(--alert-error-bg);
  border-color: var(--alert-error-border);
  color: var(--alert-error-text);
}

.alert-danger::before {
  content: "×";
}

.alert-success {
  background: var(--alert-success-bg);
  border-color: var(--alert-success-border);
  color: var(--alert-success-text);
}

.alert-success::before {
  content: "✓";
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .custom-alert {
    padding: 12px 36px 12px 44px;
  }
  .custom-alert::after {
    display: none;
  }
}
body {
  background-color: var(--bg-login);
  font-family: var(--ns-font);
}

.wrapper {
  padding: 0px !important;
}

.small_black_text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1px;
}

.smaller_black_text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1px;
}

#LoginCaptcha_CaptchaDiv {
  width: auto !important;
}

/* LOGIN CARD */
.card-login-page {
  width: 390px;
  max-width: 90%;
  flex-shrink: 0;
  border-radius: 16px;
  margin-top: 20px;
  padding-bottom: 50px;
  border: 0px;
}

.login-password {
  padding-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .card-login-page {
    width: 90%;
    margin: 0 auto;
    box-shadow: none;
    padding-bottom: 0 !important;
  }
}
.login-logo {
  height: 200px;
  margin: 10px auto;
  display: block;
}

@media (max-width: 768px) {
  .login-logo {
    height: 140px;
  }
}
@media (max-width: 768px) {
  .login-page .page-wrapper {
    display: flex;
    flex-direction: column;
  }
  #row_login {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    -webkit-overflow-scrolling: touch;
  }
  #card_login_page input,
  #card_login_page .btn {
    width: 100%;
  }
  .login-page .card-body {
    padding: 0 !important;
  }
  #footer_nescloud {
    flex: 0 0 auto;
  }
  #row_back_to_login {
    margin-bottom: 0 !important;
  }
}
/* LOGO */
#nespra_logo,
.login-logo,
.claim-logo {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.login-logo {
  height: 200px;
  margin: 10px auto;
}

/* ALERTS */
.login-alert {
  margin-left: 6%;
  margin-right: 4%;
  font-size: 15px;
}

/* FORM LAYOUT */
.login-form-row {
  padding-left: 10%;
  padding-right: 6%;
  display: flex;
  align-items: center;
}

.login-form-group {
  width: 100%;
}

/* INPUTS */
.login-input {
  border: 1px solid var(--color-primary);
  box-shadow: none;
}

/* BUTTONS */
.login-button {
  width: 100%;
}

/* PASSWORD TOGGLE*/
.eye-icon {
  position: absolute;
  right: 12px;
  top: 70%;
  transform: translateY(-50%);
  cursor: pointer;
}

a:hover {
  color: var(--text-link-hover);
  text-decoration: none;
}

@media (min-width: 3840px) {
  #nespra_logo {
    width: 360px;
  }
}
@media (max-width: 1366px) {
  #create_account_title {
    font-size: 1rem !important;
  }
  .small_black_text {
    font-size: 0.8rem !important;
  }
  .smaller_black_text {
    font-size: 0.7rem !important;
  }
  #login_vertical_banner_text_2 {
    font-size: 18px !important;
  }
  .nespra_logo_in_card {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  body {
    background-color: var(--bg-main);
  }
  #vertical_banner_column {
    display: none !important;
  }
  #card_login_page {
    margin-top: 50px;
    width: 100% !important;
  }
  #row_login {
    margin: 0px;
  }
  #nespra_logo {
    height: auto !important;
    max-height: 200px;
  }
  #create_account_title {
    font-size: 14px !important;
  }
  .small_black_text {
    font-size: 11px !important;
  }
  .smaller_black_text {
    font-size: 10px !important;
  }
  #row_back_to_login {
    margin-bottom: 10%;
  }
}
.mi-card {
  display: block;
}

@media (max-width: 767px) {
  .mi-card {
    display: none;
  }
}
@media (max-width: 768px) {
  html, body {
    margin: 0;
  }
  body {
    min-height: 100vh;
    overflow-x: hidden;
    background-color: var(--bg-main);
  }
  #row_login {
    margin: 0 !important;
    flex: 1 1 auto;
    -webkit-overflow-scrolling: touch;
  }
  #footer_nescloud {
    flex: 0 0 auto;
  }
  #row_back_to_login {
    margin-bottom: 0 !important;
  }
  #nespra_logo {
    margin-top: 60px;
    display: block;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
}

.alert-success {
  font-size: smaller;
}

/* LOGIN (ocultar boton alertas) */
#row_login .custom-alert::after {
  display: none !important;
}

#row_login .custom-alert {
  padding-right: 16px;
}

#row_login .alert-close {
  display: none;
}

.login-subtitle {
  width: 100%;
  max-width: 100%;
  display: block;
  text-align: center;
  color: var(--Neutral-Dark_secondary, #696D80);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.4px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0 auto 10px;
  padding: 0 12px;
  box-sizing: border-box;
}

.login-title {
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
  justify-content: flex-end;
  display: flex;
  flex-direction: column;
  color: var(--text-primary);
  font-size: 22px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.15px;
  word-wrap: break-word;
}

.welcome-banner {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 9px auto 12px;
  width: 100%;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 22px;
  align-self: center;
}

.hidden {
  display: none !important;
}

.welcome-subtitle {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 0 auto 12px;
  width: 100%;
  color: var(--text-secondary);
  font-size: 12px;
}

.form-control {
  font-family: var(--ns-font);
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: var(--font-weight-input);
  line-height: 1.5;
  color: var(--input-text);
  background-color: var(--input-bg);
  border: 1px solid var(--input-border-default);
  border-radius: 8px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control::-moz-placeholder {
  color: var(--input-placeholder);
}
.form-control::placeholder {
  color: var(--input-placeholder);
}
.form-control {
  /* HOVER */
}
.form-control:hover {
  border-color: var(--input-border-hover);
}
.form-control {
  /* FOCUS */
}
.form-control:focus {
  border-color: var(--input-border-focus);
  box-shadow: none;
  outline: none;
}
.form-control {
  /* FILLED (cuando tiene valor y no está focus) */
}
.form-control:not(:-moz-placeholder):not(:focus) {
  border-color: var(--input-border-filled);
}
.form-control:not(:placeholder-shown):not(:focus) {
  border-color: var(--input-border-filled);
}
.form-control {
  /* ERROR */
}
.form-control.error, .form-control.is-invalid {
  border-color: var(--input-border-error);
}
.form-control {
  /* DISABLED */
}
.form-control:disabled {
  color: var(--input-placeholder);
  cursor: not-allowed;
}

.label {
  margin-bottom: 6px;
}

.row_back_to_login {
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  color: var(--color-primary);
}

/* Claim devices layout */
.claim-container-center {
  display: flex;
  justify-content: center;
}

.claim-vertical-banner {
  flex-direction: column;
  height: 100vh;
}

/* Banner */
.claim-banner-image {
  width: 80%;
  margin: auto auto 0 15%;
}

.claim-banner-title {
  font-size: 33px;
  font-weight: 600;
  line-height: 120%;
  margin: 3% auto 0 15%;
}

.claim-banner-subtitle {
  font-size: 19px;
  margin: 3% auto auto 15%;
}

.claim-login-card {
  width: 40%;
  border: 0px;
  border-radius: 16px;
}

/* Logo */
.claim-logo {
  height: 200px;
}

/* Help section */
.claim-help-row {
  margin-bottom: 3%;
  margin-top: 10%;
}

.claim-help-text {
  padding-right: 5px;
  font-size: 13px;
}

.claim-help-link {
  text-decoration: none;
}

/* Login column layout */
.login-col-center {
  padding: 0;
}

/* LOGIN PAGE */
.vertical_login_banner {
  min-height: 100vh;
  width: 100%;
}

.dark_blue_link {
  color: #0d1d69;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.dark_blue_text {
  color: #0d1d69;
  font-size: 14px;
  font-weight: 600;
}

/*LIMPIAR ESTILOS INLINE*/
.login-form-padding {
  padding-left: 15%;
  padding-right: 15%;
}

.login-alert-padding {
  margin-left: 12%;
  margin-right: 12%;
}

.login-flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-w-100 {
  width: 100%;
}

#nespra_logo {
  height: 200px;
  width: auto;
  margin: 10px auto;
  display: block;
}

@media (max-width: 576px) {
  #nespra_logo {
    height: 120px;
  }
}
.login-help {
  margin: 16px 0;
  display: flex;
  justify-content: center;
}

.login-help-text {
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
}

.login-help-link {
  margin-left: 4px;
  text-decoration: none;
  font-weight: 500;
  color: var(--color-primary);
}

/* Style Create organization */
#container_createorg_page {
  width: 100%;
  height: 100vh;
}

#container_createorg_page #row_login {
  height: 100%;
  margin: 0;
}

/* ---------- Left column ---------- */
#container_createorg_page,
#vertical_banner_column {
  height: 100vh;
  padding-left: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ---------- Right column ---------- */
#container_createorg_page .create-org-form-column {
  background: white;
  height: 100vh;
  overflow-y: auto;
  padding-top: 40px;
}

/* ---------- Banner image ---------- */
#container_createorg_page,
#image_nespra_login {
  max-width: 90%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

/* ---------- Banner text ---------- */
#container_createorg_page #login_vertical_banner_text_2 {
  font-size: 19px;
  margin-top: 10px;
}

/* ---------- Card / Form container ---------- */
#container_createorg_page #create_org_form_container {
  width: 420px;
}

#container_createorg_page #card_login_page {
  margin-top: 0;
  max-width: 450px;
  width: 100%;
}

/* ---------- Logo ---------- */
#container_createorg_page #nespra_logo {
  max-height: 280px;
}

#container_createorg_page .nespra_logo_in_card {
  margin-top: 40px;
  margin-bottom: 0;
}

#container_createorg_page .description-org {
  text-align: center;
}

/* ---------- Form layout ---------- */
#container_createorg_page .form-row-spacing {
  padding-bottom: 10px;
}

.align-items-center {
  align-items: center;
}

.btn-full {
  width: 100%;
}

/* ---------- Password styles ---------- */
.show-hide-password {
  color: #0D1D69;
  font-size: 12px;
}

.password-validation {
  font-size: 0.8rem;
  margin-bottom: 0;
}

.password-validation.error {
  color: #C04547;
}

.password-validation.success {
  color: #0D1D69;
}

/* ---------- Divider ---------- */
.form-divider {
  width: 100%;
  height: 1px;
  margin: 20px 0;
  background: linear-gradient(to right, transparent, #E5E7EB 20%, #E5E7EB 80%, transparent);
}

/* ---------- Utilities ---------- */
.cursor-pointer {
  cursor: pointer;
}

.password-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.show-hide-password {
  font-size: 12px;
}

/* Style text login panel */
/* TEXTO PRINCIPAL DEL BANNER */
#login_vertical_banner_text_1 {
  font-size: 30px;
  font-weight: 600;
  line-height: 120%;
}

/* TEXTO SECUNDARIO */
#login_vertical_banner_text_2 {
  font-size: 19px;
}