@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;
  overflow: hidden;
}

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: rgb(180, 180, 180);
  --input-bg-text-area: #fffbed;
--alm-main: #FFCD00;
--alm-color-accent: #E6B700;
--alm-color-hover: #CC9F00;
--input-bg-icon-area: #F5E08A;
--input-bg-acentLink: #FFCD00CC;
--alm-color-disabled: #B8A251;
  --alm-color-text-light: #ffffff;
  --alm-color-text-light-hover: #d9d9d9;
  --alm-color-text-dark: #000000;
  --alm-color-text-dark-hover: #434343;

  /* Alturas de footer */
  --alm-footer-height-sm: 40px;
  --alm-footer-height-lg: 60px;

  /* Tamaños */
  --alm-form-width: 288px;
  --alm-form-height: 500px;
  --alm-circle-sm: 80px;
  --alm-circle-lg: 100px;

  /* 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 */
.alm-h-100 {
  height: 100%;
}

.alm-w-100 {
  width: 100%;
}

.alm-justify-center {
  justify-content: center;
}

.alm-bg-light {
  background-color: var( --input-bg-text-area);
}

.hidden {
  display: none!important;
}

/* Componentes */
#genericDialog input{
  background-color: var(--input-bg-text-area);
}
#genericDialog textarea{
  background-color: var(--input-bg-text-area);
}

.alm-icon-dialog-close {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

/* Botones */
.alm-btn-back {
  display: inline-flex;
  gap: 0.25rem;
  align-items: center;
  background-color: var(--alm-main);
  color: var(--alm-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;
}

.alm-btn-back:hover {
  background-color: var(--alm-color-hover);
}

.alm-btn-back:hover span {
  transform: translateX(-5px);
}

.alm-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(--alm-color-text-light);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.alm-btn-icon-close:hover {
  transform: scale(1.15);
  background-color: var(--alm-color-hover);
}

.alm-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-icon-area);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.alm-btn-icon-back:hover {
  transform: scale(1.15);
  background-color: var(--alm-color-hover);
}

.alm-btn-disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.alm-action-text-button {
  width: 100%;
  display: inline;
  text-align: center;
  padding: 0.75rem 1rem;
  background-color: var(--alm-main);
  color: var(--alm-color-text-dark);
  border: none;
  border-radius: 0.5rem;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#alm-main-menu-content .alm-action-text-button{
  width: 240px;
}

.alm-action-text-button:hover {
  background-color: var(--alm-color-hover);
  color: var(--alm-color-text-dark-hover);
}

.alm-action-text-button:disabled,
.alm-action-text-button[disabled]{
  border: 1px solid #694b1f;
  background-color: var(--alm-color-disabled);
  cursor: none;
  color:#999999;
}

.alm-auth-link-button {
  margin-top: 1.5rem;
  background: none;
  border: none;
  color: var(--alm-color-accent);
  font-size: 11px;
  text-decoration: underline;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.3s ease;
}

.alm-auth-link-button:hover {
  color: var(--alm-color-text-light-hover);
  text-decoration: none;
}

.alm-recovery-text{
  font-size: .85rem;
  color: var(--alm-color-text-light);
}

.alm-recovery-text-link{
  margin-top: .5rem;
  margin-bottom: .5rem;
  background: none;
  border: none;
  color: var(--input-bg-acentLink);
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.alm-recovery-text-link:hover {
  color: var(--alm-color-hover);
  text-decoration: none;
}


/* Iconos */
.alm-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;
}


/* Formularios */
.alm-form-element-center {
  display: flex;
  justify-content: center;
}

.alm-auth-input {
  border-radius: 10px;
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  font-size: 11px;
  transition: all 0.2s ease;
  color: var(--alm-color-text-dark);
  margin-bottom: 10px;
}

#other-completeform-view .alm-auth-input {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3);
}

#other-completeform-view .alm-auth-input:focus {
  border-color: var(--alm-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-text-area);
}

.alm-auth-input:focus {
  border-color: var(--alm-main);
  box-shadow: 0 0 0 3px rgba(3, 102, 191, 0.2);
  outline: none;
}

.alm-auth-input--error {
  border-color: #ff4d4f;
  background-color: #fff1f0;
  color: #a8071a;
}

.alm-auth-input--error:focus {
  border-color: #ff4d4f;
  box-shadow: 0 0 0 3px rgba(168, 7, 26, 0.2);
  outline: none;
}

.alm-auth-input--error::placeholder {
  color: #a8071a;
  opacity: 0.75;
}

.alm-auth-input--success {
  border-color: #52c41a;
  background-color: #f6ffed;
  color: #237804;
}

.alm-auth-input:disabled {
  background-color: #f5f5f5;
  color: #999;
  cursor: not-allowed;
}

.alm-auth-input-error-msg {
  margin-top: 0.25rem;
  font-size: 11px;
  color: #a8071a;
  font-weight: 500;
}

.alm-auth-checkbox-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.alm-auth-checkbox-label {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 2rem;
  cursor: pointer;
  font-size: 11px;
  color: var(--alm-color-accent);
  user-select: none;
}
.alm-auth-checkbox-label:hover  {
  color: var(--alm-color-text-light-hover);
}

.alm-auth-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}

.alm-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;
}

.alm-auth-checkbox-label:hover input ~ .alm-auth-checkmark {
  background-color: #f3f4f6;
}

.alm-auth-checkbox-label input:checked ~ .alm-auth-checkmark {
  background-color: var(--alm-main);
  border-color: var(--alm-main);
}

.alm-auth-checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.alm-auth-checkbox-label input:checked ~ .alm-auth-checkmark::after {
  display: block;
}

.alm-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 alm-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);
  }
}

.alm-spinner-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.alm-spinner {
  align-items: center;
  margin: 0.25rem;
  margin-bottom: 1rem;
  width: 1.5rem; /* ajustable */
  height: 1.5rem;
  background-color: var(--alm-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: alm-spin-pulse 1s infinite step-end;
}

/* Login Container */
.alm-login-container {
  overflow: hidden;
  height: 100svh;
  display: flex;
  flex-direction: column;
}

.alm-login-hero {
  flex-grow: 1;
  position: relative;
}

.alm-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;
}

.alm-login-bg-moto {
  background: url("../img/alm-landing.webp") no-repeat center center fixed;
  background-size: auto !important;
  background-position: center;
  display: flex;
  flex-direction: column;
}

.alm-login-bg-auto {
  background: url("../img/alm-landing.webp") no-repeat center center
    fixed;
  background-size: auto !important;
  background-position: center;
  display: flex;
  flex-direction: column;
}

.alm-login-bg-camion {
  background: url("../img/alm-landing.webp") no-repeat center
    center fixed;
  background-size: cover !important;
  background-position: center;
  display: flex;
  flex-direction: column;
}

.alm-login-content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 1rem;
  height: 100%;
}

.alm-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 */
}

.alm-login-content-center {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.alm-login-form {
  width: var(--alm-form-width);
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}
#other-completeform-view .alm-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);
}

.alm-login-logo {
  width: 205px;
  height: auto;
  margin: 0 auto 2rem auto;
  display: block;
}

.alm-return-form{
  width: 100%;
  display: flex;
  justify-content: end;
}

/* Login Dialog */
.alm-login-dialog {
  border: none;
  padding: 0;
  background: transparent;
  margin: auto; /* centrado automático */
  width: var(--alm-form-width);
  border-radius: 1rem;
  color: var(--alm-color-text-light);
  position: relative;
  z-index: 100;
}

.alm-login-dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}

.alm-login-dialog-container {
  position: relative;       
  display: flex;
  flex-direction: column;
  background: url("../img/alm-landing.webp") no-repeat center center fixed;
  background-size: cover !important;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  color: #fff;               
  overflow: hidden;          
}

.alm-login-dialog-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(3px);
  z-index: 0;                
  pointer-events: none;       
}

.alm-login-dialog-container > * {
  position: relative;
  z-index: 1;
}

.alm-login-dialog-content {
  margin-top: 0.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 12px;
  font-weight: 400;
}

.alm-login-dialog-title {
  font-size: 16px;
  color: var(--alm-color-text-light);
}

.alm-login-dialog-subt {
  font-size: 12px;
  font-weight: 600;
  color: var(--alm-color-text-light);
}

.alm-dialog-space{
  display: flex;
  flex-direction: column;
  gap:0.5rem;
  color:var(--alm-color-text-light);
}

/* Login Circle */
.alm-login-circle {
  color: var(--alm-color-text-dark);
  width: var(--alm-circle-sm);
  height: var(--alm-circle-sm);
  background:url('../img/almSoporteButton') no-repeat center center fixed;
  background-size: contain;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.alm-login-circle:hover {
  transform: scale(1.05);
}

/* Footer */
.alm-login-footer {
  background-color: var(--alm-main);
  color: var(--alm-color-text-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--alm-footer-height-sm);
  font-size: 12px;
}

.alm-login-footer a {
  color: var(--alm-color-text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0 0.5rem;
}

.alm-login-footer a:hover {
  color:var(--alm-color-text-dark-hover);
}

/* Media Queries */
/* Tablet (768px+) */
@media screen and (min-width: 767px) {
  .alm-login-container {
    height: 100vh;
  }

  .alm-login-bg-moto {
    background: url("../img/alm-landing.webp") no-repeat center
      center fixed;
  }
  .alm-login-bg-auto {
    background: url("../img/alm-landing.webp") no-repeat center
      center fixed;
  }
  .alm-login-bg-camion {
    background: url("../img/alm-landing.webp") no-repeat center
      right fixed;
  }

  .alm-btn-back {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 16px;
  }
}

/* Desktop (1024px+) */
@media screen and (min-width: 1024px) {
  .alm-login-bg-moto {
    background: url("../img/alm-landing.webp") no-repeat center
      center fixed;
  }
  .alm-login-bg-auto {
    background: url("../img/alm-landing.webp") no-repeat center
      center fixed;
  }
  .alm-login-bg-camion {
    background: url("../img/alm-landing.webp") no-repeat center
      center fixed;
    background-size: 100%!important;
  }

  .alm-login-content-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: end;
    padding: 2rem;
  }

  .alm-btn-back {
    top: 2rem;
    left: 2rem;
  }

  .alm-login-content {
    display: flex;
    flex-direction: row;
    height: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 3rem;
    margin-left: auto;
    margin-right: 0%;
  }

  .alm-login-circle {
    width: var(--alm-circle-lg);
    height: var(--alm-circle-lg);
  }
}

/* Desktop grande (1280px+) */
@media screen and (min-width: 1280px) {
  .alm-login-content {
    margin-right: 0%;
  }
}

/* Desktop extra grande (1440px+) */
@media screen and (min-width: 1440px) {
  .alm-login-content {
    margin-right: 0%;
  }

  .alm-login-footer {
    height: var(--alm-footer-height-lg);
    font-size: 14px;
  }
}

.alm-mainmenu-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding: 0rem;
}

.alm-mainmenu-bg {
  background-color: white;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.alm-mainmenu-logo {
  width: 100%;
  height: 7.5%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.alm-mainmenu-logo img {
  width: 250px;
  height: auto;
}

.alm-mainmenu-options {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 75%;
  transition: height 0.3s ease;
}

.alm-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;
}

.alm-instance-content {
  text-align: center;
  padding: 1rem;
  width: 100%;
}

.alm-instance-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.alm-main-btn-container {
  display: flex;
  justify-content: center;
}

.alm-othertech-view .alm-mainmenu-options {
  display: none;
}

/* Instancias: fondos */
.alm-bg-instance-1 {
  background-image: url("../img/alm-landing.webp");
}
.alm-bg-instance-2 {
  background-image: url("../img/alm-landing.webp");
}
.alm-bg-instance-3 {
  background-image: url("../img/alm-landing.webp");
}

@media screen and (max-height: 733px) {
  .alm-mainmenu-section {
    justify-content: start;
    margin-top: .5rem;
  }
  .alm-login-logo {
    margin: 0 auto .5rem auto;
  }
}

/* Tablet: 2 columnas */
@media screen and (min-width: 768px) {
  .alm-mainmenu-options {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    height: 68vh;
  }

  .alm-mainmenu-logo {
    height: 7%;
  }

  .alm-mainmenu-logo img {
    width: 360px;
  }

  .alm-mainmenu-section {
    justify-content: start;
    margin-top: 2.5rem;
  }

  @media screen and (max-height: 733px) {
    .alm-mainmenu-section {
      justify-content: start;
      margin-top: 1rem;
    }
    .alm-mainmenu-section {
      justify-content: center;
      margin-top: 0;
    }
    #alm-othertech-injected {
                  gap: 0;
    }
  }
}

/* Desktop: 3 columnas */
@media screen and (min-width: 1024px) {
  .alm-mainmenu-options {
    transition: all 0.5s ease;;
    height: 55vh;
  }

  .alm-mainmenu-logo img {
    width: 360px;
  }

  .alm-instance-card {
    width: 33.33%;
    height: 100%;
  }

  .alm-mainmenu-section {
    justify-content: space-evenly;
    margin-top: 0;
  }

  .alm-othertech-view .alm-mainmenu-options {
    display: flex;
  }

  @media screen and (max-height: 733px) {
    .alm-mainmenu-section {
      justify-content: center;
      margin-top: 0;
    }
    .alm-instance-card {
      background-size: 35vw;
    }
    .alm-bg-instance-1 {
      background-image: url("../img/alm-landing.webp");
    }
    .alm-bg-instance-2 {
      background-image: url("../img/alm-landing.webp");
    }
    .alm-bg-instance-3 {
      background-image: url("../img/alm-landing.webp");
    }
  }
  @media screen and (min-height: 733.1px) {

    .alm-mainmenu-section {
      justify-content: space-evenly;
      margin-top: 0;
    }

    .alm-mainmenu-options {
      height: 70vh;
    }

    .alm-mainmenu-logo {
      height: 4%;
    }

    .alm-instance-card {
      width: 100vw;
      height: 33.33%;
      background-size: 100vw;
    }

  }
}

@media screen and (min-width: 1240px) {
  .alm-mainmenu-options {
    height: 56vh;
  }

  .alm-instance-card {
    background-size: 34vw;
    width: 33.33%;
    height: 100%;
  }
  .alm-instance-content {
    padding: 1rem 1rem 3rem 1rem;
  }

  @media screen and (max-height: 650px) {
    .alm-instance-content {
      padding: 1rem;
    }
  }

  @media screen and (min-height: 1000px) {
    .alm-instance-content {
      padding: 1rem 1rem 3rem 1rem;
    }
    .alm-bg-instance-1 {
      background-size: cover;
      background-image: url("../img/alm-landing.webp");
    }
    .alm-bg-instance-2 {
      background-size: cover;
      background-image: url("../img/alm-landing.webp");
    }
    .alm-bg-instance-3 {
      background-size: cover;
      background-image: url(".../img/alm-landing.webp");
    }
  }
}

.alm-mainmenu-altlink {
  text-align: center;
}

.alm-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;
}

.alm-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;
}

.alm-other-dispLink:hover {
  color: var(--alm-color-hover);
}

/* 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);
  }
}
#alm-other-tech-view{
  transition: all 0.3s ease;
  transform: scale(1);
}

.alm-othertech-fade-align {
  flex-direction: column;
  justify-content: start;
}

.alm-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 */
.alm-othertech-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  padding: 1rem;
  border-radius: 1rem;
  background-color: var(--alm-main);
  color: var(--alm-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;
}

.alm-othertech-btn:hover {
  transform: translateY(-2px);
  background-color: var(--alm-color-hover);
}
.alm-othertech-btn-selected {
  background-color: var(--alm-color-hover);
}
.alm-othertech-not-selected {
  display: none;
}

.alm-othertech-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--alm-color-text-light);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.alm-icon-tech1 {
  mask-image: var(--icon-satell);
}
.alm-icon-tech2 {
  mask-image: var(--icon-truck);
}
.alm-icon-tech3 {
  mask-image: var(--icon-chart);
}

.alm-othertech-label {
  font-size: 0.875rem;
  margin-top: 0.5rem;
  text-align: center;
  color: var(--alm-color-text-light);
  max-width: 70%;
}
.alm-othertech-container.alm-responsive-othertech {
  flex-direction: column;
  align-items: center;
}

.alm-code-inputs {
  display: flex;
  gap: 0.4rem;              
  justify-content: center; 
  align-items: center;      
}

.alm-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: var(--alm-color-hover);           
  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;          
}


.alm-code-input:focus {
  border-color: var(--alm-main);
  box-shadow: 0 0 0 3px rgba(229, 35, 49, 0.2);
}

.alm-qr-container{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}
.alm-qr-img{
  width: 175px;
  height: 175px;
}

.alm-focus-instruction{
  font-size: 0.9rem;
  font-weight: 700;
}

.alm-focus{
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  margin-top: 0;
  text-align: start;
}

@media screen and (max-height: 731px) {
  .alm-qr-img{
    width: 125px;
    height: 125px;
  }
}

@media screen and (min-width: 750px) {
  #alm-othertech-injected {
    display: flex;
    justify-content: start;
    gap: 4rem;
    flex-direction: column;
  }
  .alm-qr-img{
    width: 240px;
    height: 240px;
  }

  @media screen and (max-height: 910px) {
    .alm-login-content {
      margin-top: 1rem;
    }
    .alm-login-content-center{
      gap: 1rem;
    }
    #alm-othertech-injected {
      display: flex;
                  justify-content: start;
                  gap: 0;
                  flex-direction: column;
    }
    .alm-othertech-container {
      margin-top: 0rem;
    }
    .alm-othertech-container.alm-responsive-othertech{
      height: auto;
    }
    .alm-login-logo {
      margin: 0 auto 1rem auto;
    }
    .alm-mainmenu-logo{
      margin-top: 1rem;
      margin-bottom: 1rem;
    }
    .alm-othertech-btn {
      flex-direction: row;
      height: 6rem;
    }
    .alm-othertech-label {
      max-width: 77%;
    }
    .alm-qr-img{
      width: 120px;
      height: 120px;
    }
  }
  
}
/* Desktop */
@media screen and (min-width: 1024px) {
  .alm-othertech-not-selected {
    display: flex;
  }

  .alm-mainmenu-options.alm-reduced {
    height: 41%;
    transition: height 0.3s ease;
  }

  .alm-othertech-container {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 2rem;
  }
  .alm-othertech-container.alm-responsive-othertech {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    height: 10rem;
  }
  .alm-othertech-btn {
    flex-direction: column;
  }

  .alm-qr-img{
    width: 240px;
    height: 240px;
  }

  @media screen and (max-height: 800px) {
    .alm-login-content {
      margin-top: 1rem;
    }
    .alm-login-content-center{
      gap: 0.5rem;
    }
    #alm-othertech-injected {
      display: flex;
                  justify-content: start;
                  gap: 0;
                  flex-direction: column;
    }
    .alm-othertech-container {
      margin-top: 0rem;
    }
    .alm-othertech-container.alm-responsive-othertech{
      height: auto;
    }
    .alm-login-logo {
      margin: 0 auto 1rem auto;
    }
    .alm-mainmenu-logo{
      margin-top: 1rem;
      margin-bottom: 1rem;
    }
    .alm-othertech-btn {
      flex-direction: row;
      height: 6rem;
    }
    .alm-othertech-label {
      max-width: 77%;
    }
    .alm-qr-img{
      width: 120px;
      height: 120px;
    }
  }
}
@media screen and (min-width:1280px) {
  .alm-othertech-label {
    max-width: 90%;
  }
}

.alm-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;
}
