/* /css/auth/auth.css */
:root{
  --ig-border:#dbdbdb;
  --ig-text:#262626;
  --ig-muted:#8e8e8e;
  --ig-blue:#0095f6;
  --ig-bg:#fafafa;
  --ig-card:#fff;
}

*{box-sizing:border-box;}
body{
  margin:0;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background:var(--ig-bg);
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--ig-text);
  padding:24px;
}

h1{
  font-family:"Grand Hotel","Pacifico",cursive;
  font-size:48px;
  margin:0 0 24px;
  font-weight:500;
  color:#000;
}

form{
  width:100%;
  max-width:360px;
  background:var(--ig-card);
  border:1px solid var(--ig-border);
  border-radius:8px;
  padding:20px 24px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

input{
  width:100%;
  padding:10px 12px;
  font-size:14px;
  border:1px solid var(--ig-border);
  border-radius:6px;
  background:#fafafa;
  color:var(--ig-text);
  outline:none;
}
input:focus{
  border-color:#b2b2b2;
  background:#fff;
}

button{
  margin-top:6px;
  padding:9px 12px;
  font-size:14px;
  font-weight:600;
  border:none;
  border-radius:8px;
  background:var(--ig-blue);
  color:#fff;
  cursor:pointer;
}
button:hover{ background:#1877f2; }

.or-line-through{
  width:100%;
  max-width:360px;
  display:flex;
  align-items:center;
  gap:12px;
  margin:18px 0 10px;
  color:var(--ig-muted);
  font-size:13px;
  font-weight:600;
}
.or-line-through::before,
.or-line-through::after{
  content:"";
  flex:1;
  height:1px;
  background:var(--ig-border);
}
.or-line-through p{ margin:0; }

.llnk{
  font-size:14px;
  color:#00376b;
  text-decoration:none;
  margin-bottom: 10px;
}
.llnk:hover{ text-decoration:underline; }
