@charset 'utf-8';

body {
  align-items: center;
  background: linear-gradient(135deg, #004aad, #0a3772);
  backdrop-filter: blur(12px);
  display: flex;
  height: 100vh;
  justify-content: center;
}

.login_form {
  background-color: #00000055;
  /* border: 1px solid #fff;
  border-radius: 20px; */
  display: flex;
  height: 350px;
  justify-content: space-between;
  padding: 1%;
  width: 50%;
  min-width: 300px;
  max-width: 620px;
}

.login_form > div {
  padding: 10px;
  height: calc(100% - 20px);
  width: calc(50% - 20px);
  text-align: center;
}

.login_form > .form_left img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.login_form > .form_right {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

#auth_controller {
  aspect-ratio: 1 / 0.3;
  background-color: #00a1ad;
  border: none;
  border-radius: 10px;
  color: #fff;
  margin: 0;
  transition: 0.3s;
  width: 50%;
  min-width: 130px;
}

#auth_controller:hover {
  background-color: #4bd2db;
  border: none;
  color: #fff;
}

.logo {
  width: 100%;
}

.logo > img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.inputs {
  height: 40%;
}

.icon_input {
  align-items: center;
  display: flex;
  height: 36%;
  margin: 5% 0;
}

.icon {
  align-items: center;
  aspect-ratio: 1 / 1;
  background-color: light-dark(rgb(232, 240, 254), rgba(70, 90, 126, 0.4));
  border: none;
  border-right: 1px solid #000;
  border-radius: 10px 0 0 10px;
  display: flex;
  height: 100%;
  justify-content: center;
}

.icon > img {
  height: 70%;
  object-fit: contain;
  width: 70%;
}

input[type="email"],
input[type="password"] {
  border: none;
  border-radius: 0 10px 10px 0;
  display: block;
  font-size: 22px;
  height: 100%;
  margin: 10px 0;
  padding: 0 0.5em;
  width: calc(100% - 50px);
}

.inputs {
  height: 40%;
}

input:focus {
  background-color: #fff;
  outline: none;
}

p {
  color: #ad004a;
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

#wrap_shop_list {
  position: relative;
}

#wrap_shop_list #select {
  aspect-ratio: 1 / 0.18;
  border: none;
  border-radius: 10px;
  font-size: 24px;
  padding: 0 1em;
  text-align: center;
  width: calc(100% - 2em);
}

#wrap_shop_list #shop_list {
  background-color: #fff;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  color: #333;
  font-size: 24px;
  max-height: 400px;
  overflow-y: scroll;
  top: 100%;
  left: 0%;
  position: absolute;
  width: calc(100%);
  z-index: 99;
}

#wrap_shop_list #shop_list > li {
  cursor: pointer;
  padding: 8px 1em 8px 1em;
}

.inputs_2fa {
  height: 40px;
}

input[type="text"] {
  border: none;
  border-radius: 10px;
  height: 100%;
  padding: 0 0.5em;
  width: calc(100% - 1em);
}

.checks_2fa {
  align-items: center;
  display: flex;
  color: #fff;
}

.checks_2fa input {
  transform: scale(1.5);
}

.checks_2fa label {
  font-size: 14px;
  margin-left: 1em;
  user-select: none;
}

.buttons_2fa {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.buttons_2fa button {
  border: none;
  border-radius: 10px;
  color: #fff;
  margin: 0 10px;
  padding: 10px;
  transition: 0.3s;
  width: 30%;
}

#start_controller {
  background-color: #00a1ad;
}

#start_controller:hover {
  background-color: #4bd2db;
  color: #fff;
}

#prev {
  background-color: #ad004a;
}

#prev:hover {
  background-color: #df4488;
  color: #fff;
}

.copyright {
  bottom: 0;
  color: #fff;
  left: 0;
  padding-bottom: 10px;
  position: fixed;
  text-align: center;
  user-select: none;
  width: 100%;
}

@media (max-width: 768px) {
  .login_form {
    aspect-ratio: 9 / 16;
    height: 400px;
    width: 60%;
  }
  .login_form > .form_left {
    display: none;
  }
  .login_form > .form_right {
    width: 90%;
    margin: 0 auto;
  }
  #auth_controller {
    width: 50%;
  }
}
