/* Auth pages only */
.auth-wrap{
  min-height: calc(100vh - 240px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 28px 16px;
  position: relative;
}

.auth-wrap::before{
  content:"";
  position:absolute;
  inset: 0;
  
  pointer-events:none;
}

.auth-card{
  width: min(460px, 100%);
  position: relative;
  border-radius: 22px;
  padding: 26px 24px 22px;
  background: rgba(12, 12, 14, .72);
  border: 1px solid rgba(255, 210, 120, .18);
  box-shadow:
    0 18px 50px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,210,120,.05) inset;
  backdrop-filter: blur(10px);
}

.auth-card::before{
  content:"";
  position:absolute;
  left: 18px;
  right: 18px;
  top: 10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,210,120,.75), transparent);
  opacity: .9;
}



.auth-head p{
  margin: 0 0 18px;
  color: rgba(232, 224, 199, .70);
  font-size: 14px;
}

.auth-form{
  display:flex;
  flex-direction:column;
  gap: 14px;
}

.field label{
  display:block;
  font-size: 12px;
  color: rgba(232, 224, 199, .75);
  margin: 0 0 7px;
  letter-spacing: .3px;
}

.field input{
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(232, 224, 199, .14);
  color: rgba(255, 245, 230, .92);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, transform .08s ease;
}

.field input::placeholder{
  color: rgba(232, 224, 199, .45);
}

.field input:focus{
  border-color: rgba(255, 210, 120, .42);
  box-shadow: 0 0 0 4px rgba(255, 210, 120, .12);
}

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

.field-link{
  font-size: 12px;
  text-decoration: none;
  color: rgba(255, 210, 120, .82);
  padding: 10px 8px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: background .15s ease, border-color .15s ease, opacity .15s ease;
  white-space: nowrap;
}

.field-link:hover{
  background: rgba(255, 210, 120, .08);
  border-color: rgba(255, 210, 120, .18);
}

.check{
  display:flex;
  align-items:center;
  gap: 10px;
  font-size: 13px;
  color: rgba(232, 224, 199, .75);
  user-select:none;
}

.check input{
  width: 16px;
  height: 16px;
  accent-color: rgba(255, 210, 120, .95);
}

.auth-actions{
  display:flex;
  justify-content:flex-start;
}

/* SIMPLE GOLD BUTTON */
.auth-btn{
  height: 44px;
  padding: 0 18px;
  border-radius: 12px;                 /* soft corners */
  border: 1px solid rgba(255,210,120,.35);
  cursor: pointer;

  font-weight: 700;
  letter-spacing: .3px;
  color: #1b1206;

  background: linear-gradient(135deg, #f3d08a 0%, #c48747 100%);
  box-shadow: 0 10px 22px rgba(0,0,0,.45);

  transition: transform .08s ease, filter .15s ease, box-shadow .15s ease;
}

.auth-btn:hover{
  filter: brightness(1.05);
  box-shadow: 0 12px 26px rgba(0,0,0,.55);
}

.auth-btn:active{
  transform: translateY(1px);
  box-shadow: 0 7px 16px rgba(0,0,0,.45);
}

.auth-btn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,210,120,.25), 0 10px 22px rgba(0,0,0,.45);
}



.auth-foot{
  margin-top: 6px;
  font-size: 13px;
  color: rgba(232, 224, 199, .70);
  display:flex;
  gap: 6px;
  justify-content:center;
}

.auth-foot a{
  color: rgba(255, 210, 120, .9);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 210, 120, .35);
}

.auth-foot a:hover{
  border-bottom-color: rgba(255, 210, 120, .75);
}

.auth-alert{
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 13px;
  border: 1px solid rgba(232,224,199,.14);
  background: rgba(0,0,0,.28);
  color: rgba(255,245,230,.9);
  margin-bottom: 2px;
}

.auth-alert.error{
  border-color: rgba(255, 120, 120, .25);
  box-shadow: 0 0 0 4px rgba(255, 120, 120, .08);
}

@media (max-width: 420px){
  .auth-card{ padding: 22px 18px 18px; border-radius: 18px; }
  .auth-head h1{ font-size: 24px; }
}


/* GOLDEN CIRCLE CHECKBOX */
.remember{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  font-size: 13px;
  color: rgba(232,224,199,.75);
}

/* hide native checkbox */
.remember input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* outer circle */
.remember .dot{
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,210,120,.35);
  display: grid;
  place-items: center;
  box-shadow:
    inset 0 0 0 2px rgba(0,0,0,.4),
    0 4px 10px rgba(0,0,0,.35);
  transition: border-color .15s ease, box-shadow .15s ease, transform .08s ease;
}

/* inner gold dot */
.remember .dot::after{
  content:"";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,212,120,.95), rgba(195,140,45,.95));
  opacity: 0;
  transform: scale(.4);
  transition: opacity .15s ease, transform .15s ease;
}

/* checked state */
.remember input:checked + .dot{
  border-color: rgba(255,210,120,.85);
  box-shadow:
    0 0 0 4px rgba(255,210,120,.14),
    0 6px 14px rgba(0,0,0,.45);
}

.remember input:checked + .dot::after{
  opacity: 1;
  transform: scale(1);
}

/* hover */
.remember:hover .dot{
  border-color: rgba(255,210,120,.65);
}

/* keyboard focus (important) */
.remember input:focus-visible + .dot{
  outline: none;
  box-shadow:
    0 0 0 3px rgba(255,210,120,.35),
    0 6px 14px rgba(0,0,0,.45);
}

/* press feedback */
.remember:active .dot{
  transform: translateY(1px);
}

.auth-title{
  margin: 8px 0 6px;
  font-size: 28px;
  letter-spacing: 1.6px;
  text-transform: uppercase;

  /* true metallic gold */
  background:
    linear-gradient(
      180deg,
      #fff3c4 0%,
      #ffd978 18%,
      #e6b74e 38%,
      #c9952d 55%,
      #f1c75f 72%,
      #b07a18 100%
    );

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

  /* metal depth + separation */
  text-shadow:
    0 1px 0 rgba(255,255,255,.25),
    0 2px 4px rgba(0,0,0,.55),
    0 10px 30px rgba(0,0,0,.45);

  position: relative;
}

/* subtle gold glow */
.auth-title::after{
  content:"";
  position:absolute;
  inset: -6px;
  background:
    radial-gradient(60% 40% at 50% 0%, rgba(255,215,120,.35), transparent 70%);
  filter: blur(12px);
  z-index: -1;
  pointer-events:none;
}

@media (max-width: 420px){
  .auth-title{ font-size: 24px; }
}

.divider{
  height: 1px;
  background: rgba(255,210,120,.14);
  margin: 6px 0 2px;
  border-radius: 999px;
}

