@charset "utf-8";

/* _reset.css */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

button{
  font-family: "Montserrat", sans-serif
}

input{
  font-family: "Montserrat", sans-serif;
}

textarea{
  font-family: "Montserrat", sans-serif;
}

/* _variables.css */
:root {
  /* Colores */
  --input-bg-light: white;
  --input-bg-lightgray: #c4d1dc;
  --input-bg-bluegray:#7c9ab3;
  --input-bg-darkbluegray:#465c6f;
  --tp-color-accent: #0066bf;
  --tp-color-hover: #024580;
  --tp-main: #0366bf;
  --tp-color-disabled: #194a75;
  --tp-color-text-light: #ffffff;
  --tp-color-text-light-hover: #f2eaea;
  --tp-color-text-dark: #000000;

  /* Alturas de footer */
  --tp-footer-height-sm: 40px;
  --tp-footer-height-lg: 60px;

  /* Tamaños */
  --tp-form-width: 288px;
  --tp-form-height: 500px;
  --tp-circle-sm: 60px;
  --tp-circle-lg: 80px;

  /* Iconos */
  --icon-arrow-left-circle: url("../icons/arrow-left-circle.svg");
  --icon-headset: url("../icons/headset-icon.svg");
  --icon-spinner: url("../icons/spinner.svg");
  --icon-close-dark: url("../img/icon-close-modal.png");
  --icon-chart: url("../icons/iconchart.svg");
  --icon-satell: url("../icons/iconsatell.svg");
  --icon-truck: url("../icons/icontruck.svg");
}

/* Estilos base */
.tp-h-100 {
  height: 100%;
}

.tp-w-100 {
  width: 100%;
}

.tp-justify-center {
  justify-content: center;
}

.tp-bg-light {
  background-color: var(--input-bg-light);
}

.hidden {
  display: none!important;
}

/* Componentes */
#genericDialog input{
  background-color: var(--input-bg-lightgray);
}
#genericDialog textarea{
  background-color: var(--input-bg-lightgray);
}

.tp-icon-dialog-close {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

/* Botones */
.tp-btn-back {
  display: inline-flex;
  gap: 0.25rem;
  align-items: center;
  background-color: var(--tp-main);
  color: var(--tp-color-text-light);
  border: none;
  border-radius: 1rem;
  font-size: 14px;
  font-weight: 500;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
  position: absolute;
  z-index: 10;
}

.tp-btn-back:hover {
  background-color: var(--tp-color-hover);
}

.tp-btn-back:hover span {
  transform: translateX(-5px);
}

.tp-btn-icon-close {
  background-color: transparent;
  background-image: none;
  mask-image: var(--icon-close-dark);
  -webkit-mask-image: var(--icon-close-dark);
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;

  width: 1rem;
  height: 1rem;
  border: none;
  cursor: pointer;
  background-color: var(--tp-color-text-dark);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.tp-btn-icon-close:hover {
  transform: scale(1.15);
  background-color: var(--tp-color-hover);
}

.tp-btn-icon-back{
  background-color: transparent;
  background-image: none;
  mask-image: var(--icon-arrow-left-circle);
  -webkit-mask-image: var(--icon-arrow-left-circle);
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;

  width: 1.2rem;
  height: 1.2rem;
  border: none;
  cursor: pointer;
  background-color: var(--input-bg-bluegray);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.tp-btn-icon-back:hover {
  transform: scale(1.15);
  background-color: var(--tp-color-hover);
}

.tp-btn-disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.tp-action-text-button {
  width: 100%;
  display: inline;
  text-align: center;
  padding: 0.75rem 1rem;
  background-color: var(--tp-main);
  color: var(--tp-color-text-light);
  border: none;
  border-radius: 0.5rem;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#tp-main-menu-content .tp-action-text-button{
  width: 240px;
}

.tp-action-text-button:hover {
  background-color: var(--tp-color-hover);
}

.tp-action-text-button:disabled,
.tp-action-text-button[disabled]{
  border: 1px solid #1f4769;
  background-color: var(--tp-color-disabled);
  cursor: none;
  color:#999999;
}

.tp-auth-link-button {
  margin-top: 1.5rem;
  background: none;
  border: none;
  color: #010d18;
  font-size: 11px;
  text-decoration: underline;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.3s ease;
}

.tp-auth-link-button:hover {
  color: #024580;
  text-decoration: none;
}

.tp-recovery-text{
  font-size: .85rem;
}

.tp-recovery-text-link{
  margin-top: .5rem;
  margin-bottom: .5rem;
  background: none;
  border: none;
  color: var(--input-bg-darkbluegray);
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.tp-recovery-text-link:hover {
  color: #024580;
  text-decoration: none;
}


/* Iconos */
.tp-icon-arrow-left-circle {
  background-color: currentColor;
  display: inline-block;
  mask-image: var(--icon-arrow-left-circle);
  -webkit-mask-image: var(--icon-arrow-left-circle);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  width: 1.75rem;
  height: 1.75rem;
}

.tp-login-circle-icon {
  background-color: currentColor;
  display: inline-block;
  mask-image: var(--icon-headset);
  -webkit-mask-image: var(--icon-headset);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  width: 40%;
  height: 40%;
}

/* Formularios */
.tp-form-element-center {
  display: flex;
  justify-content: center;
}

.tp-auth-input {
  border-radius: 10px;
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  font-size: 11px;
  transition: all 0.2s ease;
  color: var(--tp-color-text-dark);
  margin-bottom: 10px;
}

#other-completeform-view .tp-auth-input {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3);
}

#other-completeform-view .tp-auth-input:focus {
  border-color: var(--tp-main);
  box-shadow: 0 0 0 3px rgba(3, 102, 191, 0.2);
}

#other-completeform-view input #other-completeform-view textarea{
  background-color: var(--input-bg-lightgray);
}

.tp-auth-input:focus {
  border-color: var(--tp-main);
  box-shadow: 0 0 0 3px rgba(3, 102, 191, 0.2);
  outline: none;
}

.tp-auth-input--error {
  border-color: #ff4d4f;
  background-color: #fff1f0;
  color: #a8071a;
}

.tp-auth-input--error:focus {
  border-color: #ff4d4f;
  box-shadow: 0 0 0 3px rgba(168, 7, 26, 0.2);
  outline: none;
}

.tp-auth-input--error::placeholder {
  color: #a8071a;
  opacity: 0.75;
}

.tp-auth-input--success {
  border-color: #52c41a;
  background-color: #f6ffed;
  color: #237804;
}

.tp-auth-input:disabled {
  background-color: #f5f5f5;
  color: #999;
  cursor: not-allowed;
}

.tp-auth-input-error-msg {
  margin-top: 0.25rem;
  font-size: 11px;
  color: #a8071a;
  font-weight: 500;
}

.tp-auth-checkbox-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.tp-auth-checkbox-label {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 2rem;
  cursor: pointer;
  font-size: 11px;
  color: #374151;
  user-select: none;
}

.tp-auth-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}

.tp-auth-checkmark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 1.25rem;
  width: 1.25rem;
  background-color: white;
  border: 1px solid #d1d5db;
  border-radius: 0.25rem;
}

.tp-auth-checkbox-label:hover input ~ .tp-auth-checkmark {
  background-color: #f3f4f6;
}

.tp-auth-checkbox-label input:checked ~ .tp-auth-checkmark {
  background-color: #0366bf;
  border-color: #0366bf;
}

.tp-auth-checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.tp-auth-checkbox-label input:checked ~ .tp-auth-checkmark::after {
  display: block;
}

.tp-auth-checkmark::after {
  left: 0.4375rem;
  top: 0.25rem;
  width: 0.3125rem;
  height: 0.625rem;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Spinner */
@keyframes tp-spin-pulse {
  0% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(90deg) scale(1.1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  75% {
    transform: rotate(270deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

.tp-spinner-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.tp-spinner {
  align-items: center;
  margin: 0.25rem;
  margin-bottom: 1rem;
  width: 1.5rem; /* ajustable */
  height: 1.5rem;
  background-color: var(--tp-main);
  display: flex;
  mask-image: var(--icon-spinner);
  -webkit-mask-image: var(--icon-spinner);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  animation: tp-spin-pulse 1s infinite step-end;
}

/* Login Container */
.tp-login-container {
  overflow: hidden;
  height: 100svh;
  display: flex;
  flex-direction: column;
}

.tp-login-hero {
  flex-grow: 1;
  position: relative;
}

.tp-login-plain-bg-alone{
  background: url('./img/login/plainDispDemo.png') no-repeat center center fixed;
  background-size: cover !important;
  background-position: center;
  display: flex;
  flex-direction: column;
}

.tp-login-bg-moto {
  background: url("../img/login_moto_redisenio_md.webp") no-repeat center center fixed;
  background-size: cover !important;
  background-position: center;
  display: flex;
  flex-direction: column;
}

.tp-login-bg-auto {
  background: url("../img/login_auto_redisenio_md.webp") no-repeat center center
    fixed;
  background-size: cover !important;
  background-position: center;
  display: flex;
  flex-direction: column;
}

.tp-login-bg-camion {
  background: url("../img/login_camion_redisenio_sm.webp") no-repeat center
    center fixed;
  background-size: cover !important;
  background-position: center;
  display: flex;
  flex-direction: column;
}

.tp-login-content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 1rem;
  height: 100%;
}

.tp-login-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 2rem;
  margin-top: 3rem; /* Espacio para el botón de regreso */
}

.tp-login-content-center {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.tp-login-form {
  width: var(--tp-form-width);
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}
#other-completeform-view .tp-login-form {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1),
    0px 1px 4px -1px rgba(0, 0, 0, 0.1);
}

.tp-login-logo {
  width: 240px;
  height: auto;
  margin: 0 auto 2rem auto;
  display: block;
}

.tp-return-form{
  width: 100%;
  display: flex;
  justify-content: end;
}

/* Login Dialog */
.tp-login-dialog {
  border: none;
  padding: 0;
  background: transparent;
  margin: auto; /* centrado automático */
  width: var(--tp-form-width);
  border-radius: 1rem;
  color: var(--tp-color-text-dark);
  position: relative;
  z-index: 100;
}

.tp-login-dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}

.tp-login-dialog-container {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.tp-login-dialog-content {
  margin-top: 0.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 12px;
  font-weight: 400;
}

.tp-login-dialog-title {
  font-size: 16px;
  color: var(--tp-color-text-dark);
}

.tp-login-dialog-subt {
  font-size: 12px;
  font-weight: 600;
  color: var(--tp-color-dark);
}

.tp-dialog-space{
  display: flex;
  flex-direction: column;
  gap:0.5rem
}

/* Login Circle */
.tp-login-circle {
  color: var(--tp-color-text-dark);
  width: var(--tp-circle-sm);
  height: var(--tp-circle-sm);
  border-radius: 50%;
  background-color: white;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.tp-login-circle-text {
  font-size: 12px;
  text-align: center;
  font-weight: 400;
  color: var(--tp-color-text-dark); /* Color fijo para el texto */
  margin-top: 0.25rem;
}

.tp-login-circle:hover {
  transform: scale(1.05);
}

/* Footer */
.tp-login-footer {
  background-color: var(--tp-color-accent);
  color: var(--tp-color-text-light);
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--tp-footer-height-sm);
  font-size: 12px;
}

.tp-login-footer a {
  color: var(--tp-color-text-light);
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0 0.5rem;
}

.tp-login-footer a:hover {
  color: var(--tp-color-text-light-hover);
}

/* Media Queries */
/* Tablet (768px+) */
@media screen and (min-width: 767px) {
  .tp-login-container {
    height: 100vh;
  }

  .tp-login-bg-moto {
    background: url("../img/login_moto_redisenio_md.webp") no-repeat center
      center fixed;
  }
  .tp-login-bg-auto {
    background: url("../img/login_auto_redisenio_md.webp") no-repeat center
      center fixed;
  }
  .tp-login-bg-camion {
    background: url("../img/login_camion_redisenio_md.webp") no-repeat center
      right fixed;
  }

  .tp-btn-back {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 16px;
  }
}

/* Desktop (1024px+) */
@media screen and (min-width: 1024px) {
  .tp-login-bg-moto {
    background: url("../img/login_moto_redisenio_lg.webp") no-repeat center
      center fixed;
  }
  .tp-login-bg-auto {
    background: url("../img/login_auto_redisenio_lg.webp") no-repeat center
      center fixed;
  }
  .tp-login-bg-camion {
    background: url("../img/login_camion_redisenio-lg.webp") no-repeat center
      center fixed;
    background-size: 100vw;
  }

  .tp-login-content-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: end;
    padding: 2rem;
  }

  .tp-btn-back {
    top: 2rem;
    left: 2rem;
  }

  .tp-login-content {
    display: flex;
    flex-direction: row;
    height: 100%;
    justify-content: flex-end;
    align-items: center;
    margin-top: 2rem;
    gap: 3rem;
    margin-left: auto;
    margin-right: 0%;
  }

  .tp-login-circle {
    width: var(--tp-circle-lg);
    height: var(--tp-circle-lg);
  }
}

/* Desktop grande (1280px+) */
@media screen and (min-width: 1280px) {
  .tp-login-content {
    margin-right: 5%;
  }
}

/* Desktop extra grande (1440px+) */
@media screen and (min-width: 1440px) {
  .tp-login-content {
    margin-right: 7%;
  }

  .tp-login-footer {
    height: var(--tp-footer-height-lg);
    font-size: 14px;
  }
}

.tp-mainmenu-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding: 0rem;
}

.tp-mainmenu-bg {
  background-color: white;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.tp-mainmenu-logo {
  width: 100%;
  height: 7.5%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.tp-mainmenu-logo img {
  width: 250px;
  height: auto;
}

.tp-mainmenu-options {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 75%;
  transition: height 0.3s ease;
}

.tp-instance-card {
  height: 33.33%;
  width: 100%;
  background-size: 100vw;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  justify-content: center;
  color: white;
}

.tp-instance-content {
  text-align: center;
  padding: 1rem;
  width: 100%;
}

.tp-instance-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.tp-main-btn-container {
  display: flex;
  justify-content: center;
}

.tp-othertech-view .tp-mainmenu-options {
  display: none;
}

/* Instancias: fondos */
.tp-bg-instance-1 {
  background-image: url("../img/login_camion_redisenio.webp");
}
.tp-bg-instance-2 {
  background-image: url("../img/login_auto_redisenio.webp");
}
.tp-bg-instance-3 {
  background-image: url("../img/login_moto_redisenio.webp");
}

@media screen and (max-height: 733px) {
  .tp-mainmenu-section {
    justify-content: start;
    margin-top: .5rem;
  }
  .tp-login-logo {
    margin: 0 auto .5rem auto;
  }
}

/* Tablet: 2 columnas */
@media screen and (min-width: 768px) {
  .tp-mainmenu-options {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    height: 68vh;
  }

  .tp-mainmenu-logo {
    height: 7%;
  }

  .tp-mainmenu-logo img {
    width: 360px;
  }

  .tp-mainmenu-section {
    justify-content: start;
    margin-top: 2.5rem;
  }

  @media screen and (max-height: 733px) {
    .tp-mainmenu-section {
      justify-content: start;
      margin-top: 1rem;
    }
    .tp-mainmenu-section {
      justify-content: center;
      margin-top: 0;
    }
    #tp-othertech-injected {
                  gap: 0;
    }
  }
}

/* Desktop: 3 columnas */
@media screen and (min-width: 1024px) {
  .tp-mainmenu-options {
    transition: all 0.5s ease;;
    height: 55vh;
  }

  .tp-mainmenu-logo img {
    width: 360px;
  }

  .tp-instance-card {
    width: 33.33%;
    height: 100%;
  }

  .tp-mainmenu-section {
    justify-content: space-evenly;
    margin-top: 0;
  }

  .tp-othertech-view .tp-mainmenu-options {
    display: flex;
  }

  @media screen and (max-height: 733px) {
    .tp-mainmenu-section {
      justify-content: center;
      margin-top: 0;
    }
    .tp-instance-card {
      background-size: 35vw;
    }
    .tp-bg-instance-1 {
      background-image: url("../img/login_camion_redisenio_md.webp");
    }
    .tp-bg-instance-2 {
      background-image: url("../img/login_auto_redisenio_md.webp");
    }
    .tp-bg-instance-3 {
      background-image: url("../img/login_moto_redisenio.webp");
    }
  }
  @media screen and (min-height: 733.1px) {

    .tp-mainmenu-section {
      justify-content: space-evenly;
      margin-top: 0;
    }

    .tp-mainmenu-options {
      height: 70vh;
    }

    .tp-mainmenu-logo {
      height: 4%;
    }

    .tp-instance-card {
      width: 100vw;
      height: 33.33%;
      background-size: 100vw;
    }

  }
}

@media screen and (min-width: 1240px) {
  .tp-mainmenu-options {
    height: 56vh;
  }

  .tp-instance-card {
    background-size: 34vw;
    width: 33.33%;
    height: 100%;
  }
  .tp-instance-content {
    padding: 1rem 1rem 3rem 1rem;
  }

  @media screen and (max-height: 650px) {
    .tp-instance-content {
      padding: 1rem;
    }
  }

  @media screen and (min-height: 1000px) {
    .tp-instance-content {
      padding: 1rem 1rem 3rem 1rem;
    }
    .tp-bg-instance-1 {
      background-size: cover;
      background-image: url("../img/login_camion_redisenio_md.webp");
    }
    .tp-bg-instance-2 {
      background-size: cover;
      background-image: url("../img/login_auto_redisenio_md.webp");
    }
    .tp-bg-instance-3 {
      background-size: cover;
      background-image: url("../img/login_moto_redisenio_md.webp");
    }
  }
}

.tp-mainmenu-altlink {
  text-align: center;
}

.tp-other-dispLink {
  margin-top: 1rem;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  background: none;
  border: none;
  color: #010d18;
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.tp-other-dispLink::after {
  content: "";
  position: absolute;
  left: 7.5%; /* Comienza a 10% del ancho (para centrar el 80%) */
  bottom: -5px; /* Ajusta según tu text-underline-offset */
  width: 85%; /* Ancho del subrayado */
  height: 0.2em; /* Grosor del subrayado */
  background-color: currentColor; /* Usa el color del texto */
  transform: scaleX(1);
  transition: transform 0.3s ease;
}

.tp-other-dispLink:hover {
  color: #024580;
}

/* Entrada: Nueva vista deslizándose desde la derecha */
.fade-in {
  animation: slideIn 0.7s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

/* Salida: Vista actual deslizándose hacia la izquierda */
.fade-out {
  animation: slideOut 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
  to {
    opacity: 0;
    transform: translateX(-30px);
    filter: blur(2px);
  }
}
#tp-other-tech-view{
  transition: all 0.3s ease;
  transform: scale(1);
}

.tp-othertech-fade-align {
  flex-direction: column;
  justify-content: start;
}

.tp-othertech-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  margin-top: 1rem;
  width: 100%;
  transition: all 0.3s ease;
  transform: scale(1);
}

/* Botón */
.tp-othertech-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  padding: 1rem;
  border-radius: 1rem;
  background-color: var(--tp-main);
  color: var(--tp-color-text-light);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.2s ease;
  width: 100%;
  height: 100%;
  max-width: 280px;
  gap: 0.25rem;
}

.tp-othertech-btn:hover {
  transform: translateY(-2px);
  background-color: var(--tp-color-hover);
}
.tp-othertech-btn-selected {
  background-color: var(--tp-color-hover);
}
.tp-othertech-not-selected {
  display: none;
}

.tp-othertech-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--tp-color-text-light);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.tp-icon-tech1 {
  mask-image: var(--icon-satell);
}
.tp-icon-tech2 {
  mask-image: var(--icon-truck);
}
.tp-icon-tech3 {
  mask-image: var(--icon-chart);
}

.tp-othertech-label {
  font-size: 0.875rem;
  margin-top: 0.5rem;
  text-align: center;
  color: var(--tp-color-text-light);
  max-width: 70%;
}
.tp-othertech-container.tp-responsive-othertech {
  flex-direction: column;
  align-items: center;
}

.tp-code-inputs {
  display: flex;
  gap: 0.4rem;              
  justify-content: center; 
  align-items: center;      
}

.tp-code-input {
  width: 2.3rem;
  height: 2.3rem;
  font-size: 1.8rem;           
  font-weight: bold;
  border: 2px solid #ddd;
  border-radius: 5px;
  outline: none;
  color: #0066BF;           
  font-family: verdana,sans-serif;
  padding: 0px;
  text-align: center;
  line-height: 2.3rem; 
  box-sizing: border-box;
  -webkit-appearance: none; 
  appearance: none;
  overflow: hidden;          
}


.tp-code-input:focus {
  border-color: var(--tp-main);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

.tp-qr-container{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}
.tp-qr-img{
  width: 175px;
  height: 175px;
}

.tp-focus-instruction{
  font-size: 0.9rem;
  font-weight: 700;
}

.tp-focus{
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  margin-top: 0;
  text-align: start;
}

@media screen and (max-height: 731px) {
  .tp-qr-img{
    width: 125px;
    height: 125px;
  }
}

@media screen and (min-width: 750px) {
  #tp-othertech-injected {
    display: flex;
    justify-content: start;
    gap: 4rem;
    flex-direction: column;
  }
  .tp-qr-img{
    width: 240px;
    height: 240px;
  }

  @media screen and (max-height: 910px) {
    .tp-login-content {
      margin-top: 1rem;
    }
    .tp-login-content-center{
      gap: 1rem;
    }
    #tp-othertech-injected {
      display: flex;
                  justify-content: start;
                  gap: 0;
                  flex-direction: column;
    }
    .tp-othertech-container {
      margin-top: 0rem;
    }
    .tp-othertech-container.tp-responsive-othertech{
      height: auto;
    }
    .tp-login-logo {
      margin: 0 auto 1rem auto;
    }
    .tp-mainmenu-logo{
      margin-top: 1rem;
      margin-bottom: 1rem;
    }
    .tp-othertech-btn {
      flex-direction: row;
      height: 6rem;
    }
    .tp-othertech-label {
      max-width: 77%;
    }
    .tp-qr-img{
      width: 120px;
      height: 120px;
    }
  }
  
}
/* Desktop */
@media screen and (min-width: 1024px) {
  .tp-othertech-not-selected {
    display: flex;
  }

  .tp-mainmenu-options.tp-reduced {
    height: 41%;
    transition: height 0.3s ease;
  }

  .tp-othertech-container {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 2rem;
  }
  .tp-othertech-container.tp-responsive-othertech {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    height: 10rem;
  }
  .tp-othertech-btn {
    flex-direction: column;
  }

  .tp-qr-img{
    width: 240px;
    height: 240px;
  }

  @media screen and (max-height: 800px) {
    .tp-login-content {
      margin-top: 1rem;
    }
    .tp-login-content-center{
      gap: 0.5rem;
    }
    #tp-othertech-injected {
      display: flex;
                  justify-content: start;
                  gap: 0;
                  flex-direction: column;
    }
    .tp-othertech-container {
      margin-top: 0rem;
    }
    .tp-othertech-container.tp-responsive-othertech{
      height: auto;
    }
    .tp-login-logo {
      margin: 0 auto 1rem auto;
    }
    .tp-mainmenu-logo{
      margin-top: 1rem;
      margin-bottom: 1rem;
    }
    .tp-othertech-btn {
      flex-direction: row;
      height: 6rem;
    }
    .tp-othertech-label {
      max-width: 77%;
    }
    .tp-qr-img{
      width: 120px;
      height: 120px;
    }
  }
}
@media screen and (min-width:1280px) {
  .tp-othertech-label {
    max-width: 90%;
  }
}

.tp-set-app-container {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center; 
  gap: 0.5rem;
  font-weight: 500;
  font-size: 12px;
  margin-bottom: 0.5rem;
  background: transparent;
  border: none;
  outline: none;
}


.microsoftAppAuth{
  width: 48px;
  height: 48px;
  background: url("../img/microsoft-app-auth.png")no-repeat center center fixed;
}
.googleAppAuth{
  width: 48px;
  height: 48px;
  background: url("../img/google-app-auth.png") no-repeat center center fixed;
}
