:root {
  --main: #E10611;
  --main-light: rgb(246.7402597403, 6.5797402597, 18.6425974026);
  --main-dark: rgb(207, 5.52, 15.64);
  --white: #ffffff;
  --form-bg: #13232f;
  --card-bg: white;
  --card-color: #4f4848;
}

html {
  overflow-y: scroll;
  min-height: 100vh;
  --vh: 1vh;
}

body {
  font-family: "Titillium Web", sans-serif;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #E10611;
  transition: color 0.2s ease;
}
a:hover {
  color: rgb(207, 5.52, 15.64);
}

.login-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
}

.login-panel-left {
  position: relative;
  background-color: rgba(225, 6, 17, 0.5);
  background-image: url("../../../images/hero_5.png");
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  overflow: hidden;
}
.login-panel-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(19, 35, 47, 0.15) 0%, rgba(19, 35, 47, 0.35) 100%);
  pointer-events: none;
}

.login-brand {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.login-brand img {
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.4));
}
.login-brand h2 {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.3;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.login-brand p {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  font-size: 1rem;
  margin: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.login-panel-right {
  background: #13232f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 48px;
  overflow-y: auto;
}

.login-form-container {
  width: 100%;
  max-width: 420px;
}

.tab-group {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
  display: flex;
  border-bottom: 2px solid rgba(160, 179, 176, 0.2);
}
.tab-group .tab {
  flex: 1;
}
.tab-group .tab a {
  display: block;
  padding: 12px 16px;
  text-align: center;
  color: rgba(160, 179, 176, 0.7);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  transition: color 0.25s ease;
}
.tab-group .tab a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #E10611;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.tab-group .tab a:hover {
  color: #ffffff;
}
.tab-group .tab a.touch-active {
  opacity: 0.8;
}
.tab-group .tab.active a {
  color: #ffffff;
}
.tab-group .tab.active a::after {
  transform: scaleX(1);
}

.tab-content > div:last-child {
  display: none;
}

h1 {
  text-align: center;
  color: #ffffff;
  font-weight: 300;
  font-size: 1.5rem;
  margin: 0 0 32px;
}

.field-wrap {
  position: relative;
  margin-bottom: 20px;
}

.password-wrap {
  display: flex;
  align-items: stretch;
  gap: 8px;
}
.password-wrap input {
  flex: 1;
  min-width: 0;
}

input,
textarea {
  font-family: "Titillium Web", sans-serif;
  font-size: 1rem;
  display: block;
  width: 100%;
  height: 48px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(160, 179, 176, 0.4);
  border-radius: 8px;
  color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
input::placeholder,
textarea::placeholder {
  color: rgba(160, 179, 176, 0.6);
}
input:focus,
textarea:focus {
  outline: none;
  border-color: #E10611;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 3px rgba(225, 6, 17, 0.35);
}
input.invalid,
textarea.invalid {
  border-color: #ff6b6b !important;
  background: rgba(255, 107, 107, 0.08);
}
input.valid,
textarea.valid {
  border-color: #4ecdc4 !important;
}

textarea {
  height: auto;
  resize: vertical;
}

.password-toggle {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  padding: 0;
  background: rgba(160, 179, 176, 0.1);
  border: 1px solid rgba(160, 179, 176, 0.3);
  border-radius: 8px;
  color: #E10611;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.password-toggle:hover {
  background: rgba(225, 6, 17, 0.15);
  border-color: #E10611;
  color: rgb(246.7402597403, 6.5797402597, 18.6425974026);
}
.password-toggle:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(225, 6, 17, 0.35);
}
.password-toggle svg {
  pointer-events: none;
}

.forgot {
  text-align: right;
  margin: -8px 0 20px;
  font-size: 0.82rem;
}
.forgot a {
  color: rgba(160, 179, 176, 0.8);
}
.forgot a:hover {
  color: rgb(246.7402597403, 6.5797402597, 18.6425974026);
}

.btn-login, .button {
  display: block;
  width: 100%;
  padding: 14px 0;
  font-family: "Titillium Web", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  background: linear-gradient(135deg, #E10611 0%, rgb(207, 5.52, 15.64) 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}
.btn-login:hover, .button:hover {
  background: linear-gradient(135deg, rgb(246.7402597403, 6.5797402597, 18.6425974026) 0%, #E10611 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(225, 6, 17, 0.4);
}
.btn-login:active, .button:active {
  transform: translateY(0);
  box-shadow: none;
}
.btn-login:focus, .button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(225, 6, 17, 0.35);
}
.btn-login.touch-active, .touch-active.button {
  transform: translateY(1px);
  transition: none;
}

.button-block {
  display: block;
  width: 100%;
}

.error-message {
  color: #ff6b6b;
  font-size: 0.75rem;
  margin-top: 6px;
  display: block;
  line-height: 1.3;
}

.pie-pagina {
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #dee2e6;
  color: #869099;
  font-size: 11px;
}

.pie-pagina .grupo-1 {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 8px;
  padding: 8px 16px;
}

.pie-pagina .grupo-1 .box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  text-align: center;
  transition: background-color 0.2s ease;
}
.pie-pagina .grupo-1 .box:hover {
  background-color: rgba(160, 179, 176, 0.15);
}
.pie-pagina .grupo-1 .box p {
  color: #43484d;
  margin: 0;
  text-align: center;
  font-size: 11px;
  font-weight: 400;
}

.pie-pagina .grupo-1 .box figure img {
  width: 16px;
  margin-right: 4px;
}

.parrafo {
  background: rgba(19, 35, 47, 0.9);
  padding: 30px;
  max-width: 1024px;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px 4px rgba(19, 35, 47, 0.3);
  text-align: justify;
}

.parrafo2 {
  text-align: justify;
}

.nav-pills .nav-link {
  color: grey;
}

.nav-pills .nav-link.active {
  color: white;
}

.nav-pills .nav-link:not(.active):hover {
  color: black;
}

.nav-pills .nav-item.dropdown.show .nav-link:hover {
  color: black;
}

#modalPoliticaPrivacidad .modal-content,
#modalTerminosCondiciones .modal-content,
#modalPoliticaCookies .modal-content {
  background-color: #ffffff;
  color: #333333;
}
#modalPoliticaPrivacidad .modal-header,
#modalTerminosCondiciones .modal-header,
#modalPoliticaCookies .modal-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}
#modalPoliticaPrivacidad .modal-title,
#modalTerminosCondiciones .modal-title,
#modalPoliticaCookies .modal-title {
  color: #333333;
  font-weight: 600;
}
#modalPoliticaPrivacidad .modal-body,
#modalTerminosCondiciones .modal-body,
#modalPoliticaCookies .modal-body {
  color: #333333;
  background-color: #ffffff;
}
#modalPoliticaPrivacidad .modal-body p,
#modalTerminosCondiciones .modal-body p,
#modalPoliticaCookies .modal-body p {
  color: #333333 !important;
  margin-bottom: 1rem;
  line-height: 1.6;
  text-align: justify;
  font-size: 1rem;
  font-weight: 400;
}
#modalPoliticaPrivacidad .modal-body h6,
#modalTerminosCondiciones .modal-body h6,
#modalPoliticaCookies .modal-body h6 {
  color: #2c3e50 !important;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
#modalPoliticaPrivacidad .modal-body ul,
#modalTerminosCondiciones .modal-body ul,
#modalPoliticaCookies .modal-body ul {
  color: #333333 !important;
  padding-left: 1.5rem;
}
#modalPoliticaPrivacidad .modal-body li,
#modalTerminosCondiciones .modal-body li,
#modalPoliticaCookies .modal-body li {
  color: #333333 !important;
  margin-bottom: 0.5rem;
}
#modalPoliticaPrivacidad .modal-footer,
#modalTerminosCondiciones .modal-footer,
#modalPoliticaCookies .modal-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #dee2e6;
}
#modalPoliticaPrivacidad *,
#modalTerminosCondiciones *,
#modalPoliticaCookies * {
  color: #333333 !important;
}
#modalPoliticaPrivacidad .btn-close,
#modalTerminosCondiciones .btn-close,
#modalPoliticaCookies .btn-close {
  filter: invert(1);
}

@media (max-width: 1024px) {
  .login-panel-left {
    background-attachment: scroll;
  }
}
@media (max-width: 768px) {
  .login-wrapper {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .login-panel-left {
    background-attachment: scroll;
    min-height: 220px;
    padding: 24px 20px;
    justify-content: center;
  }
  .login-brand {
    gap: 12px;
  }
  .login-brand img {
    max-width: 140px;
  }
  .login-brand h2 {
    font-size: 1.2rem;
  }
  .login-brand p {
    font-size: 0.8rem;
  }
  .login-panel-right {
    padding: 32px 24px;
    justify-content: flex-start;
    min-height: calc(var(--vh, 1vh) * 100 - 220px);
  }
  .login-form-container {
    max-width: 100%;
  }
  .tab-group .tab a {
    font-size: 0.78rem;
    padding: 10px 8px;
  }
  h1 {
    font-size: 1.2rem;
    margin: 0 0 24px;
  }
  .pie-pagina .grupo-1 {
    padding: 8px;
  }
}
@media (max-width: 480px) {
  .login-panel-left {
    min-height: 180px;
    padding: 20px 16px;
  }
  .login-brand {
    gap: 8px;
  }
  .login-brand img {
    max-width: 120px;
  }
  .login-brand h2 {
    font-size: 1rem;
  }
  .login-brand p {
    display: none;
  }
  .login-panel-right {
    padding: 24px 16px;
  }
  .tab-group .tab a {
    font-size: 0.72rem;
    padding: 10px 4px;
  }
  h1 {
    font-size: 1.05rem;
    margin: 0 0 20px;
  }
  input,
  textarea {
    font-size: 16px;
    height: 44px;
  }
  .btn-login, .button {
    padding: 12px 0;
    font-size: 0.9rem;
  }
  .pie-pagina .grupo-1 .box p {
    font-size: 10px;
  }
  .error-message {
    font-size: 0.68rem;
  }
}
@media (max-width: 320px) {
  .login-panel-left {
    min-height: 140px;
    padding: 16px;
  }
  .login-brand img {
    max-width: 100px;
  }
  .tab-group .tab a {
    font-size: 0.65rem;
    padding: 8px 2px;
  }
  h1 {
    font-size: 0.95rem;
  }
}
@media (max-height: 500px) and (orientation: landscape) {
  .login-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .login-panel-left {
    min-height: 100dvh;
    padding: 16px;
  }
  .login-brand {
    gap: 8px;
  }
  .login-brand img {
    max-width: 80px;
  }
  .login-brand h2 {
    font-size: 0.9rem;
  }
  .login-brand p {
    display: none;
  }
  .login-panel-right {
    padding: 16px 24px;
    justify-content: flex-start;
    overflow-y: auto;
  }
  h1 {
    font-size: 1rem;
    margin: 0 0 12px;
  }
  .tab-group {
    margin-bottom: 16px;
  }
  .field-wrap {
    margin-bottom: 12px;
  }
}
@media (max-height: 730px) {
  .login-panel-right {
    justify-content: flex-start;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .field-wrap {
    margin-bottom: 14px;
  }
  .tab-group {
    margin-bottom: 24px;
  }
  h1 {
    font-size: 1.2rem;
    margin: 0 0 20px;
  }
}
@media (max-height: 650px) {
  h1 {
    font-size: 1rem;
    margin: 0 0 12px;
  }
  .tab-group {
    margin-bottom: 14px;
  }
  .field-wrap {
    margin-bottom: 10px;
  }
  input,
  textarea {
    height: 40px;
    font-size: 0.9rem;
  }
  .btn-login, .button {
    padding: 10px 0;
  }
}
@media (min-width: 1920px) {
  .login-brand img {
    max-width: 280px;
  }
  .login-brand h2 {
    font-size: 2rem;
  }
  .login-brand p {
    font-size: 1.1rem;
  }
  .login-form-container {
    max-width: 480px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/*# sourceMappingURL=intranet2.css.map */
