body{
  margin:0;
  min-height:100vh;
  font-family:Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 20% 20%, rgba(109,127,255,0.25), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(181,113,255,0.18), transparent 24%),
    linear-gradient(180deg, #111433 0%, #0a0d24 100%);
  color:#fff;
}

.auth-page{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}

.auth-card{
  width:100%;
  max-width:480px;
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(14px);
  border-radius:32px;
  box-shadow:0 25px 80px rgba(0,0,0,0.45);
  padding:34px;
}

.auth-card.wide{
  max-width:680px;
}

.auth-card h1{
  font-size:36px;
  margin:0 0 10px;
}

.auth-card p{
  color:rgba(255,255,255,0.68);
  line-height:1.6;
}

label{
  display:block;
  margin-top:18px;
  margin-bottom:6px;
  color:rgba(255,255,255,0.82);
  font-weight:600;
}

input, select, textarea{
  width:100%;
  padding:14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.14);
  background:rgba(255,255,255,0.07);
  color:#fff;
  font-size:15px;
}

textarea{
  min-height:110px;
}

button{
  margin-top:22px;
  width:100%;
  border:none;
  border-radius:999px;
  padding:16px;
  background:linear-gradient(90deg, #6285ff, #d89a54);
  color:#fff;
  font-size:18px;
  font-weight:700;
  cursor:pointer;
}

a{
  display:inline-block;
  margin-top:16px;
  color:#9fb2ff;
}

.error{
  background:rgba(196,18,48,.22);
  border:1px solid rgba(196,18,48,.45);
  padding:12px;
  border-radius:14px;
  margin:14px 0;
}

.success{
  background:rgba(40,200,100,.18);
  border:1px solid rgba(40,200,100,.35);
  padding:12px;
  border-radius:14px;
  margin:14px 0;
}

.admin-row{
  padding:12px;
  border:1px solid rgba(255,255,255,0.10);
  border-radius:14px;
  margin-top:10px;
  color:rgba(255,255,255,0.78);
}

.password-help{
    margin-top:8px;
    margin-bottom:18px;
    font-size:13px;
    color:#6b7280;
    line-height:1.5;
}

.password-help ul{
    margin:6px 0 0 18px;
    padding:0;
}

.password-help li{
    margin:2px 0;
}

.location-picker{
  display:flex;
  gap:10px;
  align-items:center;
}

.location-picker input{
  flex:1;
}

.location-picker button{
  width:auto;
  margin-top:0;
  padding:13px 18px;
  border-radius:14px;
  white-space:nowrap;
}

.location-help{
  margin-top:8px;
  font-size:13px;
  color:rgba(255,255,255,0.62);
}

.selected-locations{
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.location-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-radius:999px;
  padding:8px 12px;
  background:rgba(255,255,255,0.12);
  color:#fff;
  font-size:14px;
  font-weight:700;
}

.location-chip button{
  width:22px;
  height:22px;
  margin:0;
  padding:0;
  border-radius:50%;
  background:rgba(255,255,255,0.16);
  color:#fff;
  line-height:1;
  font-size:16px;
}

.location-empty{
  color:rgba(255,255,255,0.55);
  font-size:13px;
}

@media(max-width:760px){
  .location-picker{
    flex-direction:column;
    align-items:stretch;
  }

  .location-picker button{
    width:100%;
  }
}

.location-autocomplete-mount{
  width:100%;
}

.location-autocomplete-mount gmp-place-autocomplete{
  width:100%;
}