/* =========================================================
   Listorio.pl - Professional Auth UI
   Plik: assets/css/auth-pro.css
   ========================================================= */

:root{
  --lp-bg:#0d1118;
  --lp-card:#171b22;
  --lp-card-2:#10141b;
  --lp-line:rgba(255,255,255,.13);
  --lp-text:#f7f7f7;
  --lp-muted:rgba(255,255,255,.66);
  --lp-dim:rgba(255,255,255,.46);
  --lp-pink:#E41450;
  --lp-pink-2:#f3135c;
  --lp-gold:#F6A607;
}

body{
  background:#0d1118;
}

.lp-auth-page{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:46px 18px;
  color:var(--lp-text);
  background:
    radial-gradient(circle at 20% 18%, rgba(228,20,80,.14), transparent 32%),
    radial-gradient(circle at 78% 12%, rgba(246,166,7,.10), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(228,20,80,.08), transparent 32%),
    linear-gradient(180deg,#0f131a 0%,#090d13 100%);
}

.lp-auth-shell{
  width:min(660px, 100%);
  display:flex;
  flex-direction:column;
  align-items:center;
}

.lp-auth-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin-bottom:44px;
  color:#fff;
  text-decoration:none;
}

.lp-auth-logo-mark{
  width:62px;
  height:62px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:linear-gradient(180deg,#ef145d,#d80d47);
  color:#fff;
  font-size:36px;
  font-weight:900;
  box-shadow:0 18px 46px rgba(228,20,80,.28);
}

.lp-auth-logo-text{
  font-size:48px;
  line-height:.9;
  font-weight:900;
  letter-spacing:-.06em;
}

.lp-auth-logo-text span{
  color:var(--lp-gold);
}

.lp-auth-card{
  width:100%;
  padding:42px 42px 34px;
  border-radius:30px;
  border:1px solid var(--lp-line);
  background:
    linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.02)),
    rgba(20,24,31,.92);
  box-shadow:
    0 32px 90px rgba(0,0,0,.48),
    inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter:blur(18px);
}

.lp-auth-head{
  text-align:center;
  margin-bottom:30px;
}

.lp-auth-kicker{
  margin:0 0 8px;
  color:var(--lp-gold);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:12px;
  font-weight:900;
}

.lp-auth-head h1{
  margin:0 0 12px;
  color:#fff;
  font-size:42px;
  line-height:1;
  letter-spacing:-.045em;
  font-weight:900;
}

.lp-auth-head p{
  max-width:460px;
  margin:0 auto;
  color:var(--lp-muted);
  font-size:16px;
  line-height:1.55;
}

.lp-auth-form{
  display:grid;
  gap:17px;
}

.lp-field{
  display:grid;
  gap:9px;
}

.lp-field > span{
  color:#fff;
  font-size:14px;
  font-weight:800;
}

.lp-field small{
  color:var(--lp-dim);
  font-weight:700;
}

.lp-input-wrap{
  height:58px;
  display:grid;
  grid-template-columns:44px 1fr;
  align-items:center;
  gap:0;
  border:1px solid var(--lp-line);
  border-radius:15px;
  background:rgba(7,10,15,.64);
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.lp-input-wrap:focus-within{
  border-color:rgba(228,20,80,.72);
  background:rgba(7,10,15,.82);
  box-shadow:0 0 0 4px rgba(228,20,80,.13);
}

.lp-input-wrap svg{
  width:22px;
  height:22px;
  margin-left:18px;
  fill:rgba(255,255,255,.66);
}

.lp-input-wrap input{
  width:100%;
  height:100%;
  border:0;
  outline:0;
  background:transparent;
  color:#fff;
  padding:0 18px 0 12px;
  font-size:16px;
  font-weight:650;
}

.lp-input-wrap input::placeholder{
  color:rgba(255,255,255,.48);
}

.lp-auth-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-top:2px;
}

.lp-consents{
  display:grid;
  gap:12px;
  margin-top:2px;
}

.lp-check{
  min-height:28px;
  display:grid;
  grid-template-columns:24px 1fr;
  align-items:start;
  column-gap:12px;
  color:#fff;
  cursor:pointer;
}

.lp-check input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.lp-check > span{
  width:24px;
  height:24px;
  display:block;
  border-radius:7px;
  border:1.5px solid rgba(255,255,255,.32);
  background:rgba(255,255,255,.04);
  position:relative;
  margin-top:0;
  transition:background .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.lp-check > span::after{
  content:"";
  position:absolute;
  left:7px;
  top:3px;
  width:7px;
  height:13px;
  border:solid #fff;
  border-width:0 2px 2px 0;
  transform:rotate(45deg) scale(0);
  opacity:0;
  transition:transform .16s ease, opacity .16s ease;
}

.lp-check input:checked + span{
  background:var(--lp-pink);
  border-color:var(--lp-pink);
  box-shadow:0 0 0 4px rgba(228,20,80,.14);
}

.lp-check input:checked + span::after{
  transform:rotate(45deg) scale(1);
  opacity:1;
}

.lp-check em{
  display:block;
  padding-top:1px;
  color:rgba(255,255,255,.86);
  font-style:normal;
  font-size:15px;
  line-height:1.45;
}

.lp-check a,
.lp-auth-link,
.lp-auth-switch a{
  color:var(--lp-pink-2);
  text-decoration:none;
  font-weight:900;
}

.lp-check a:hover,
.lp-auth-link:hover,
.lp-auth-switch a:hover{
  text-decoration:underline;
  text-underline-offset:3px;
}

.lp-main-btn{
  width:100%;
  min-height:60px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  border:0;
  border-radius:17px;
  margin-top:8px;
  background:linear-gradient(90deg,#E41450,#f3135c);
  color:#fff;
  cursor:pointer;
  font-size:18px;
  font-weight:900;
  box-shadow:0 18px 42px rgba(228,20,80,.25);
}

.lp-main-btn strong{
  font-size:28px;
  line-height:1;
  font-weight:600;
}

.lp-main-btn:hover{
  filter:brightness(1.06);
}

.lp-divider{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:18px;
  margin:12px 0 2px;
  color:rgba(255,255,255,.48);
  font-size:13px;
  font-weight:900;
}

.lp-divider::before,
.lp-divider::after{
  content:"";
  height:1px;
  background:rgba(255,255,255,.14);
}

.lp-social-btn{
  width:100%;
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:13px;
  border-radius:16px;
  border:1px solid var(--lp-line);
  background:rgba(255,255,255,.035);
  color:#fff;
  cursor:pointer;
  font-size:16px;
  font-weight:800;
}

.lp-social-btn:hover{
  background:rgba(255,255,255,.06);
  border-color:rgba(246,166,7,.40);
}

.lp-google{
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#fff;
  color:#4285f4;
  font-weight:900;
}

.lp-auth-switch{
  margin:8px 0 0;
  text-align:center;
  color:var(--lp-muted);
  font-size:16px;
  line-height:1.5;
}

.lp-auth-safe{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin:26px 0 0;
  color:rgba(255,255,255,.52);
  font-size:14px;
}

.lp-auth-safe span{
  color:rgba(255,255,255,.75);
}

.flash-stack{
  width:100%;
  margin:0 0 18px;
}

@media(max-width:720px){
  .lp-auth-page{
    padding:28px 14px;
    align-items:flex-start;
  }

  .lp-auth-logo{
    margin-bottom:28px;
  }

  .lp-auth-logo-mark{
    width:52px;
    height:52px;
    font-size:30px;
  }

  .lp-auth-logo-text{
    font-size:38px;
  }

  .lp-auth-card{
    padding:30px 22px 26px;
    border-radius:24px;
  }

  .lp-auth-head h1{
    font-size:34px;
  }

  .lp-auth-head p{
    font-size:15px;
  }

  .lp-auth-row{
    align-items:flex-start;
    flex-direction:column;
    gap:12px;
  }

  .lp-check em{
    font-size:14px;
  }
}

@media(max-width:420px){
  .lp-auth-logo-text{
    font-size:32px;
  }

  .lp-auth-logo-mark{
    width:46px;
    height:46px;
    border-radius:13px;
  }

  .lp-input-wrap{
    grid-template-columns:40px 1fr;
  }

  .lp-input-wrap svg{
    margin-left:15px;
  }
}
