/* =========================
   LOGIN PAGE
========================= */

.login-page{
  min-height: 100vh;

  display: flex;
  flex-direction: column;

  background: #04070d;
}

.login-main{
  flex: 1 0 auto;

  padding-top: var(--header-h);

  background:
    linear-gradient(
      180deg,
      rgba(2, 6, 14, 0.10),
      rgba(2, 6, 14, 0.22)
    ),
    url("/assets/img/foto.png") no-repeat center top fixed;

  background-size: cover;
}

.login-hero{
  position: relative;

  width: 100%;

  padding: 18px 0 8px;

  overflow: hidden;

  background: transparent;
}

.login-wrap{
  position: relative;
  z-index: 1;

  width: 100%;
}

.login-card{
  width: min(100%, 620px);

  margin: 0 auto;

  padding: 0 35px 18px;

  border-radius: 24px;

  border: 1px solid rgba(176, 199, 245, 0.16);

  background:
    linear-gradient(
      180deg,
      rgba(10, 18, 37, 0.75),
      rgba(6, 12, 24, 0.84)
    );

  box-shadow:
    0 24px 60px rgba(0, 0, 0, .42),
    inset 0 1px 0 rgba(255, 255, 255, .04);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.login-card h1{
  margin-top: 21px;

  text-align: center;

  font-family: "Cormorant Garamond";

  font-size: 52px;

  background:
    linear-gradient(
      180deg,
      #efdbc3 0%,
      #f7d3ab 18%,
      #ffce92 38%,
      #fabd58 52%,
      #f6cb6a 70%,
      #f3dfbf 100%
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;

  color: transparent;

  text-shadow:
    0 2px 28px rgba(0, 0, 0, .35),
    0 6px 14px rgba(0, 0, 0, .25);
}

.login-sub{
  margin: 10px 0 22px;

  text-align: center;

  color: #dde6f4;

  font-size: 1.08rem;

  line-height: 1.5;
}

.login-message{
  text-align: center;

  margin-bottom: 12px;

  color: #ffcf7a;

  font-weight: 600;
}

.login-form{
  display: grid;

  gap: 16px;
}

.login-field{
  display: grid;

  gap: 8px;
}

.login-field label{
  color: #eef3ff;

  font-size: .98rem;

  font-weight: 700;

  padding-left: 2px;
}

.login-input-wrap{
  min-height: 72px;

  display: flex;
  align-items: center;

  gap: 14px;

  padding: 0 16px;

  border-radius: 18px;

  border: 1px solid rgba(172, 196, 245, 0.14);

  background: rgba(4, 9, 20, 0.46);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 12px 30px rgba(0,0,0,.22);

  transition:
    border-color .18s ease,
    box-shadow .18s ease,
    transform .18s ease;
}

.login-input-wrap:focus-within{
  border-color: rgba(216, 178, 110, 0.42);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 16px 34px rgba(0,0,0,.28),
    0 0 0 1px rgba(216, 178, 110, 0.18);

  transform: translateY(-1px);
}

.login-icon{
  width: 48px;

  flex: 0 0 auto;

  display: flex;
  align-items: center;
}

.login-icon img{
  width: 50px;
  height: 50px;

  object-fit: contain;
}

.login-input-wrap input{
  width: 100%;
  height: 50px;

  border: 0;
  outline: 0;

  background: transparent;

  color: #eef3ff;

  font-size: 1rem;
  font-weight: 600;
}

.login-input-wrap input::placeholder{
  color: #93a2bc;
}

.toggle-pass{
  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

.toggle-pass img{
  width: 65px;
  height: 50px;

  opacity: .85;
}

.login-row{
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 12px;

  margin-top: 2px;
}

.remember-me{
  display: inline-flex;
  align-items: center;

  gap: 10px;

  color: #edf3ff;

  font-size: .96rem;
  font-weight: 600;

  cursor: pointer;
}

.remember-me input{
  width: 16px;
  height: 16px;

  accent-color: #d8b26e;
}

.forgot-link{
  color: #f3d89e;

  font-size: .96rem;
  font-weight: 700;

  text-decoration: none;
}

.forgot-link:hover{
  color: #ffd978;
}

.login-submit{
  position: relative;

  overflow: hidden;

  min-height: 60px;

  border-radius: 999px;

  border: 1px solid rgba(255, 223, 130, 0.9);

  background:
    linear-gradient(
      180deg,
      #f3cf73 0%,
      #dcb45a 55%,
      #b9852f 100%
    );

  color: #211606;

  font-size: 50px;

  cursor: pointer;

  transition:
    transform .18s ease,
    box-shadow .18s ease;
}

.login-submit:hover{
  transform: translateY(-1px);

  box-shadow:
    0 0 25px rgba(255, 210, 120, 0.35);
}

.login-divider{
  position: relative;

  text-align: center;

  margin-top: 2px;
}

.login-divider::before{
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  top: 50%;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.18),
      transparent
    );
}

.login-divider span{
  position: relative;
  z-index: 1;

  padding: 0 14px;

  color: #d6deeb;

  font-size: .98rem;
  font-weight: 600;
}

.login-create-account{
  min-height: 58px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  border: 1px solid rgba(130, 155, 218, 0.42);

  background:
    linear-gradient(
      180deg,
      rgba(27, 43, 78, 0.72),
      rgba(12, 20, 40, 0.90)
    );

  color: #eef3ff;

  text-decoration: none;

  font-size: 1rem;
  font-weight: 800;

  transition:
    transform .18s ease,
    border-color .18s ease;
}

.login-create-account:hover{
  transform: translateY(-1px);

  border-color: rgba(180, 205, 255, 0.5);
}

/* =========================
   FOOTER
========================= */

.login-page .site-footer{
  flex: 0 0 auto;

  margin-top: 0;

  padding: 4px 0;

  background: #04070d;
}

.login-page .footer-wrap{
  padding-top: 4px;

  border-top: 1px solid rgba(255,255,255,0.08);
}

.login-page .site-footer p{
  margin: 0;

  line-height: 1.2;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px){

  .login-hero{
    padding-top: 12px;
  }

  .login-card{
    padding: 0 22px 18px;
  }

  .login-card h1{
    font-size: 42px;
  }

  .login-submit{
    font-size: 38px;
  }

  .login-row{
    flex-direction: column;
    align-items: flex-start;
  }
}
/* finall */
