.threevg-appt-wrapper{
  max-width:720px;
  margin:40px auto;
  padding:24px 20px 26px;
  border-radius:20px;
  background:radial-gradient(circle at top,#0f172a 0,#020617 60%);
  color:#e5e7eb;
  box-shadow:0 22px 60px rgba(15,23,42,.85);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
}
.threevg-appt-wrapper h2{
  margin:0 0 6px;
  font-size:24px;
  color:#f9fafb;
}
.threevg-appt-sub{
  margin:0 0 18px;
  font-size:14px;
  color:#9ca3af;
}
.threevg-appt-errors{
  border-radius:10px;
  background:rgba(248,113,113,.12);
  color:#fecaca;
  padding:8px 10px;
  margin-bottom:14px;
  font-size:13px;
}
.threevg-appt-errors p{margin:0;}

.threevg-appt-form .threevg-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.threevg-field{
  margin-bottom:14px;
}
.threevg-field label{
  display:block;
  font-size:13px;
  margin-bottom:4px;
  color:#e5e7eb;
}
.threevg-field label span{color:#f97316;}
.threevg-field input,
.threevg-field select,
.threevg-field textarea{
  width:100%;
  border-radius:10px;
  border:1px solid rgba(148,163,184,.8);
  background:rgba(15,23,42,.95);
  color:#f9fafb;
  padding:8px 10px;
  font-size:14px;
  outline:none;
  transition:border-color .2s,box-shadow .2s,transform .15s;
}
.threevg-field input::placeholder,
.threevg-field textarea::placeholder{color:#6b7280;}
.threevg-field input:focus,
.threevg-field select:focus,
.threevg-field textarea:focus{
  border-color:#38bdf8;
  box-shadow:0 0 0 1px rgba(56,189,248,.7);
  transform:translateY(-1px);
}
.threevg-actions{
  margin-top:6px;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.threevg-actions button{
  border:none;
  border-radius:999px;
  padding:9px 18px;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
  background:linear-gradient(135deg,#22c55e,#3b82f6);
  color:#0b1120;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 16px 45px rgba(8,47,73,.9);
  transition:transform .15s,box-shadow .15s,filter .15s;
}
.threevg-actions button:hover{
  transform:translateY(-1px);
  filter:brightness(1.05);
}
.threevg-actions button:active{
  transform:translateY(0);
  box-shadow:0 10px 30px rgba(15,23,42,.9);
}
.threevg-appt-note{
  font-size:12px;
  color:#9ca3af;
  margin:0;
}

.threevg-appt-success{
  text-align:center;
}
.threevg-appt-success h3{
  margin-top:0;
  margin-bottom:10px;
  font-size:20px;
  color:#bbf7d0;
}
.threevg-appt-success p{
  margin:0;
  font-size:14px;
  color:#e5e7eb;
}

@media (max-width:720px){
  .threevg-appt-wrapper{
	margin:20px auto;
	border-radius:18px;
	padding:18px 14px 20px;
  }
  .threevg-appt-form .threevg-grid{
	grid-template-columns:1fr;
  }
}
