/* VIDEO BACKGROUND */
.signup-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}

/* SIGNUP PAGE */
.signup-hero{
  position:relative;
  flex:1;
  min-height:520px;
  overflow:hidden;
  border-left:1px solid var(--line);
  border-right:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:36px 18px;
}

.signup-bg{
  position:absolute;
  inset:0;
  background:none;
  filter: blur(1px);
  transform: scale(1.02);
}

.signup-tint{
  position:absolute;
  inset:0;
  background: rgba(210, 180, 120, 0.45);
}

.signup-card{
  position:relative;
  z-index:2;
  width: 380px;
  border-radius: 18px;
  padding: 22px 22px 18px;
  background: rgba(255,255,255,0.60);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  color:#111;
}

.signup-title{
  margin: 0 0 14px;
  text-align:center;
  font-size: 18px;
  font-weight: 800;
}

.signup-label{
  display:block;
  font-size: 11px;
  margin: 10px 0 6px;
  color:#222;
}

.signup-input{
  width:100%;
  height: 30px;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 0 10px;
  outline:none;
  background: rgba(255,255,255,0.85);
  font-size: 11px;
}

.password-wrap{ position:relative; }

.pw-toggle{
  position:absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  cursor:pointer;
  font-size: 12px;
  opacity: .7;
}

.btn-signup{
  margin-top: 12px;
  width:100%;
  height: 34px;
  border: none;
  border-radius: 6px;
  background: #0a3d6b;
  color:#fff;
  font-weight: 800;
  font-size: 11px;
  cursor:pointer;
}

.divider{
  margin: 12px 0 10px;
  text-align:center;
  font-size: 10px;
  color:#333;
  opacity:.8;
}
.divider span{
  background: rgba(255,255,255,0.4);
  padding: 0 8px;
  border-radius: 10px;
}

.social-row{
  display:flex;
  gap: 12px;
  justify-content:center;
  margin-bottom: 10px;
}

.oauth-btn{
  width: 70px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.9);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: transform .15s ease, box-shadow .15s ease;
}

.oauth-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,.2);
}

.oauth-svg{
  width: 16px;
  height: 16px;
  display:block;
}


.have-account{
  margin: 10px 0 0;
  text-align:center;
  font-size: 10px;
  color:#111;
  opacity:.85;
}
.have-account a{
  color:#111;
  font-weight: 800;
  text-decoration:none;
}

.auth-error{
  margin:10px 0 14px;
  padding:10px 12px;
  border-radius:10px;
  background: rgba(255,0,0,0.08);
  border: 1px solid rgba(255,0,0,0.20);
  color:#b00020;
  font-size:14px;
}
