*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:'Inter',system-ui,sans-serif;

  background:
    linear-gradient(
      rgba(248,250,252,0.92),
      rgba(248,250,252,0.92)
    ),
    url("/assets/images/reminder-bg.jpg") center/cover no-repeat;

  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--text);
}

/* =====================
   AUTH CONTAINER
===================== */

.auth{
  width:100%;
  max-width:420px;
  padding:24px;
}

.card{
  background:var(--surface);
  border-radius:16px;
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
  padding:36px;
}

/* =====================
   HEADER
===================== */

.header{
  text-align:center;
  margin-bottom:28px;
}

.auth-icon{
  font-size:38px;
  color:var(--primary);
  margin-bottom:10px;
}

.header h1{
  margin:0;
  font-size:24px;
  font-weight:600;
  letter-spacing:-0.02em;
}

.header p{
  margin-top:8px;
  font-size:14px;
  color:var(--muted);
}

/* =====================
   FORM FIELDS
===================== */

.field{
  margin-top:18px;
}

label{
  display:block;
  font-size:13px;
  font-weight:500;
  margin-bottom:6px;
}

.icon-field{
  position:relative;
}

.icon-field span{
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  font-size:20px;
  color:var(--muted);
}

input{
  width:100%;
  padding:12px 14px;
  padding-left:44px;
  font-size:14px;
  border-radius:10px;
  border:1px solid var(--border);
  font-family:inherit;
}

input:focus{
  outline:none;
  border-color:var(--primary);
  box-shadow:0 0 0 3px rgba(79,70,229,.15);
}

/* =====================
   BUTTONS
===================== */

.primary-btn{
  width:100%;
  margin-top:24px;
  padding:12px;
  border-radius:999px;
  border:none;
  background:var(--primary);
  color:#fff;

  font-size:14px;
  font-weight:500;
  line-height:1;                /* 🔑 IMPORTANT */

  cursor:pointer;

  display:flex;                 /* 🔑 FORCE CENTER */
  align-items:center;
  justify-content:center;
  text-align:center;
}


.oauth-btn{
  width:100%;
  padding:11px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  font-size:14px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

/* =====================
   DIVIDER
===================== */

.divider{
  display:flex;
  align-items:center;
  gap:12px;
  margin:22px 0;
  color:var(--muted);
  font-size:12px;
}

.divider::before,
.divider::after{
  content:"";
  flex:1;
  height:1px;
  background:var(--border);
}

/* =====================
   FOOTER
===================== */

.footer{
  text-align:center;
  margin-top:20px;
  font-size:13px;
  color:var(--muted);
}

.footer span{
  color:var(--primary);
  font-weight:500;
  cursor:pointer;
}

/* =====================
   UTIL
===================== */

.hidden{
  display:none;
}
