/* =========================================
LOGIN • OZONCORE (PROFISSIONAL)
========================================= */

body.login-page{
  visibility:hidden;

  min-height:100dvh;
  display:flex;
  align-items:flex-start;
  justify-content:center;

  padding:40px 16px 20px;

  background:
  radial-gradient(circle at top, rgba(0,255,209,0.08), transparent 60%),
  linear-gradient(180deg,#020617,#0B1222);

  overflow-x:hidden;
}

/* CARD */

.login-box{
  width:100%;
  max-width:380px;
  min-width:280px;

  background:rgba(17,24,39,0.75);
  backdrop-filter:blur(14px);

  border:1px solid rgba(255,255,255,0.06);
  border-radius:20px;

  padding:36px 28px;

  box-shadow:0 30px 80px rgba(0,0,0,.6);

  display:flex;
  flex-direction:column;
  gap:24px;

  position:relative;
  overflow:hidden;

  margin-top:20px;
}

/* glow */

.login-box::before{
  content:"";
  position:absolute;
  top:-40%;
  left:-40%;
  width:200%;
  height:200%;
  background:radial-gradient(circle, rgba(0,255,209,0.08), transparent 60%);
  animation:floatGlow 6s linear infinite;
}

@keyframes floatGlow{
  0%{ transform:translate(0,0); }
  50%{ transform:translate(10%,10%); }
  100%{ transform:translate(0,0); }
}

/* HEADER */

.login-header{
  text-align:center;
  z-index:2;
}

.badge{
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(0,255,209,.1);
  color:#00FFD1;
  font-size:12px;
  margin-bottom:10px;
}

.login-header h1{
  font-size:22px;
  margin-bottom:4px;
  color:#E6EDF3;
}

.login-header p{
  font-size:13px;
  color:#94A3B8;
}

/* FORM */

#loginForm{
  display:flex;
  flex-direction:column;
  gap:16px;
  padding:0 4px;
  z-index:2;
}

/* INPUT */

.input{
  width:100%;

  height:48px; /* 🔥 padrão desktop */

  border-radius:12px;
  padding:0 16px;

  font-size:14px;

  background:rgba(2,6,23,0.85); /* 🔥 mais elegante */
  border:1px solid rgba(255,255,255,0.08);

  color:#E6EDF3;

  transition:.2s;
  box-sizing:border-box;
}

.input::placeholder{
  color:#64748B;
}

.input:focus{
  border-color:#00FFD1;
  box-shadow:0 0 0 2px rgba(0,255,209,.15); /* 🔥 mais fino e premium */
  outline:none;
}

/* MOBILE */

@media(max-width:480px){

  .input{
    height:52px;
    font-size:16px; /* evita zoom iPhone */
  }

}

/* BOTÃO */

.btn-login{
  width:100%;
  height:52px;
  border-radius:14px;
  font-weight:700;
  background:linear-gradient(135deg,#00FFD1,#00B8FF);
  color:#001018;
  border:none;
  cursor:pointer;
}

/* FOOTER */

.footer{
  text-align:center;
  font-size:12px;
  color:#6B7280;
}