.login__title{
  text-align: center;
  color: #fff;
  font-weight: 700;
}

.login {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  min-height: 100vh;
  padding: 112px 0 48px;
  background-color: #121212;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: auto;
}

.login__logo {
  display: block;
  height: 80px;
  margin: 0 auto 16px;
}

.login__container {
  max-width: 650px;
  margin: 0 auto;
  padding: 0px 40px;
}

.login__inner {
  position: relative;
  padding: 48px 40px;
  background: #262626;
  border-radius: 24px;
}
.login__hint {
  margin-top: 32px;
  font-size: 13px;
  font-weight: 450;
  line-height: 14px;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}

/* Estilos para el contenedor del input */
.input-group {
  position: relative;
  display: inline-block;
  outline: none;
  width: 100%;
}

/* Estilos para el icono */
.input-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #a9b1bc;
}

/* Estilos para el input */
.input-data {
  flex: 1; /* El input ocupará todo el espacio disponible */
  text-align: left; /* Alinea el texto del placeholder a la derecha */
  padding: 13px 20px;
  outline: #a9b1bc;
  border: 1px solid #cbd0d8;
  border-radius: 7px;
  width: 100%;
}

.input-data::placeholder {
  color: #a9b1bc; /* Cambia el color del texto del placeholder */
}

.body-content {
  -webkit-box-flex: 1;
  flex-grow: 1;
}

.login__enterCode{
  margin: 20px;
  text-align: center;
}

.input-enterCode{
  width: 35px;
  padding: 10px;
  border-radius: 7px;
  text-align: center;
  border: 0px;
  outline: #a9b1bc;
}

/*  container checkbox*/
.containerChk {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #a9b1bc;
}

/* default checkbox */
.containerChk input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Crea checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 5px;
  height: 20px;
  width: 22px;
  background-color: #cbd0d8;
  border-radius: 5px;
}

/* On mouse-over, add a grey background color */
.containerChk:hover input ~ .checkmark {
  background-color: #cbd0d8;
}

/* When the checkbox is checked, add a blue background */
.containerChk input:checked ~ .checkmark {
  background-color: #424242;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.containerChk input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.containerChk .checkmark:after {
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media only screen and (max-width: 767px) {
  .login {
      padding: 0;
  }
}
@media only screen and (max-height: 840px) {
  .login {
      padding: 40px 0;
  }
}

@media only screen and (max-width: 767px) {
  .login__container {
      max-width: 100%;
      margin: 0;
      padding: 0;
  }
}

@media only screen and (max-width: 1023px) {
  .container {
      padding: 0 24px;
  }
}

@media only screen and (max-width: 1259px) {
  .container {
      padding: 0 32px;
  }
}

@media only screen and (max-width: 767px) {
  .login__inner {
      padding: 40px 24px;
      /* border-radius: 0; */
  }
}