/* =========================================================
BASE LAYOUT
- Full viewport + centered layout
========================================================= */
*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:'Inter', sans-serif;
  background:#050505;
  color:#ffffff;

  display:flex;
  justify-content:center;
  align-items:center;

  min-height:100vh;
  padding:40px 20px;
}

/* =========================================================
WRAPPER
- Layout container
========================================================= */
.auth-wrapper{
  width:100%;
  max-width:560px;

  display:flex;
  flex-direction:column;
  align-items:center;
  gap:24px;
}

/* =========================================================
LOGO
- Primary brand element
========================================================= */
.logo{
  display:flex;
  justify-content:center;
  align-items:center;
}

.logo img{
  width:96px;
  opacity:1;
}

/* =========================================================
CARD CONTAINER
- Signup surface
========================================================= */
.signup-container{
  width:100%;
  max-width:560px;

  padding:56px;
  border-radius:24px;

  background:#0f0f0f;

  border:1px solid rgba(255,255,255,0.06);

  box-shadow:
    0 30px 80px rgba(0,0,0,0.8);
}

/* =========================================================
TITLE
========================================================= */
.signup-container h1{
  margin:0 0 36px;
  font-size:30px;
  font-weight:600;
  letter-spacing:-0.4px;
}

/* =========================================================
INPUT GROUP
========================================================= */
.input-group{
  display:flex;
  flex-direction:column;
  margin-bottom:24px;
}

label{
  font-size:13px;
  color:#9ca3af;
  margin-bottom:6px;
}

/* =========================================================
INPUT FIELD
========================================================= */
input{
  padding:16px;
  border-radius:12px;

  background:#0a0a0a;
  border:1px solid rgba(255,255,255,0.06);

  color:#ffffff;
  font-size:15px;

  transition:all 0.2s ease;
}

input::placeholder{
  color:#555;
}

input:focus{
  outline:none;
  border-color:#22c55e;
  box-shadow:0 0 0 2px rgba(34,197,94,0.2);
}

/* =========================================================
PRIMARY BUTTON
========================================================= */
.primary-btn{
  width:100%;
  margin-top:18px;
  padding:18px;

  border:none;
  border-radius:14px;

  background:#22c55e;
  color:#000000;

  font-weight:600;
  font-size:16px;

  cursor:pointer;

  transition:all 0.2s ease;
}

.primary-btn:hover{
  transform:translateY(-1px);
  background:#16a34a;
}

.primary-btn:active{
  transform:scale(0.97);
}

/* =========================================================
DIVIDER
========================================================= */
.divider{
  margin:34px 0;
  text-align:center;
  position:relative;
  font-size:12px;
  color:#6b7280;
}

.divider span{
  background:#050505;
  padding:0 12px;
  position:relative;
  z-index:1;
}

.divider::before{
  content:"";
  position:absolute;
  top:50%;
  left:0;
  width:100%;
  height:1px;
  background:rgba(255,255,255,0.08);
}

/* =========================================================
GOOGLE BUTTON
========================================================= */
.google-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;

  padding:16px;
  border-radius:14px;

  background:#ffffff;
  color:#000000;

  font-weight:500;
  text-decoration:none;

  transition:all 0.2s ease;
}

.google-btn img{
  width:20px;
}

.google-btn:hover{
  background:#f3f3f3;
  transform:translateY(-1px);
}

.google-btn:active{
  transform:scale(0.97);
}

/* =========================================================
FOOT LINK
========================================================= */
.switch{
  margin-top:26px;
  font-size:13px;
  color:#9ca3af;
  text-align:center;
}

.switch a{
  color:#22c55e;
  text-decoration:none;
}

.switch a:hover{
  text-decoration:underline;
}