/* ------------------------------------ */
/* فونت (کاملاً تضمینی و بدون خطا) */
/* ------------------------------------ */
/* فونت لوکال */
@font-face {
    font-family: "VazirmatnLocal";
    src: url("fonts/Vazirmatn-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "VazirmatnLocal";
    src: url("fonts/Vazirmatn-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html,
body{
  width:100%;
  min-height:100%;
}

body{
  font-family:"VazirmatnLocal", sans-serif;
  background:
    radial-gradient(circle at top right,
    rgba(140, 0, 255, 0.35),
    transparent 35%),

    radial-gradient(circle at bottom left,
    rgba(255, 0, 200, 0.15),
    transparent 40%),

    #07060b;

  color:white;

  display:flex;
  justify-content:center;
  align-items:center;

  padding:20px;
}

/* =========================
   CARD
========================= */

.card{

  width:100%;
  max-width:420px;

  background:rgba(20, 10, 35, 0.75);

  border:1px solid rgba(180, 75, 255, 0.2);

  border-radius:24px;

  padding:24px;

  backdrop-filter:blur(18px);

  box-shadow:
    0 0 30px rgba(122,43,255,0.2),
    0 20px 60px rgba(0,0,0,0.5);
}

/* =========================
   TOP BRAND
========================= */

.brand-top{

  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:10px;

  margin-bottom:20px;
}

.logo-dot{

  width:14px;
  height:14px;

  border-radius:50%;

  background:linear-gradient(
    135deg,
    #ff4bd8,
    #7a2bff
  );

  box-shadow:0 0 15px #7a2bff;
}

.brand-mini{
  font-size:12px;
  letter-spacing:3px;
  opacity:0.8;
}

/* =========================
   CENTER TITLE
========================= */

.brand-center{
  text-align:center;
  margin-bottom:30px;
}

.brand-title{

  font-size:38px;
  font-weight:700;

  margin-bottom:8px;

  text-shadow:0 0 25px rgba(122,43,255,0.4);
}

.brand-slogan{

  font-size:14px;

  color:rgba(255,255,255,0.7);
}

/* =========================
   FORM
========================= */

.field{
  display:block;
  margin-bottom:18px;
}

.field-label{

  display:block;

  margin-bottom:8px;

  font-size:13px;

  color:rgba(255,255,255,0.75);
}

.input-wrap{

  display:flex;
  align-items:center;
  gap:10px;

  background:rgba(10, 5, 20, 0.7);

  border:1px solid rgba(180,75,255,0.25);

  border-radius:16px;

  padding:14px;

  transition:0.2s;
}

.input-wrap:focus-within{

  border-color:#b04bff;

  box-shadow:
    0 0 0 2px rgba(176,75,255,0.2),
    0 0 30px rgba(122,43,255,0.5);
}

.input{

  width:100%;

  background:none;
  border:none;
  outline:none;

  color:white;

  font-family:"VazirmatnLocal", sans-serif;

  font-size:14px;
}

.input::placeholder{
  color:rgba(255,255,255,0.35);
}

.input-ico{
  opacity:0.85;
}

/* =========================
   CHECKBOX
========================= */

.row-checkbox{

  margin-top:5px;
  margin-bottom:20px;
}

.check{

  display:flex;
  align-items:center;
  gap:8px;

  font-size:13px;

  color:rgba(255,255,255,0.8);
}

.check input{
  accent-color:#b04bff;
}

/* =========================
   FINGERPRINT
========================= */

.row-fingerprint{

  display:flex;
  justify-content:center;

  margin-bottom:24px;
}

.finger{

  display:flex;
  align-items:center;
  gap:10px;

  background:rgba(122,43,255,0.1);

  border:1px solid rgba(180,75,255,0.35);

  border-radius:14px;

  padding:10px 18px;

  color:white;

  cursor:pointer;

  transition:0.2s;

  font-family:"VazirmatnLocal", sans-serif;
}

.finger:hover{

  background:rgba(122,43,255,0.18);

  box-shadow:0 0 25px rgba(122,43,255,0.35);

  transform:translateY(-2px);
}

.finger svg{

  width:22px;
  height:22px;

  color:#c26cff;
}

.finger-text{
  font-size:13px;
}

/* =========================
   BUTTON
========================= */

.btn{

  width:100%;

  border:none;

  border-radius:16px;

  padding:14px;

  cursor:pointer;

  font-size:15px;
  font-weight:700;

  font-family:"VazirmatnLocal", sans-serif;

  background:linear-gradient(
    135deg,
    #7a2bff,
    #b04bff,
    #ff4bd8
  );

  color:white;

  box-shadow:
    0 10px 35px rgba(122,43,255,0.4);

  transition:0.2s;
}

.btn:hover{

  transform:translateY(-2px);

  box-shadow:
    0 15px 40px rgba(122,43,255,0.55);
}

/* =========================
   FOOTER
========================= */

.hint{

  text-align:center;

  margin-top:16px;

  font-size:11px;

  color:rgba(255,255,255,0.45);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:480px){

  .card{
    padding:20px;
  }

  .brand-title{
    font-size:32px;
  }
}
/* ===== FIX CENTER & RESPONSIVE ===== */

.page{
  width:100%;
  min-height:100vh;

  display:flex;
  justify-content:center;
  align-items:center;
}

/* جلوگیری از کشیده شدن */
.card{
  width:90%;
  max-width:380px;
}

/* تبلت */
@media (min-width:768px){

  .card{
    max-width:420px;
  }

}

/* لپتاپ */
@media (min-width:1200px){

  .card{
    max-width:440px;
  }

}
