:root{
  --bg:#0b1020;
  --card:#111a33;
  --muted:#9aa7c2;
  --text:#eef2ff;
  --err:#ff6b6b;
  --ok:#3ddc97;
  --border:#263152;
  --btn:#2b6cff;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 10% 10%, #16214a 0%, var(--bg) 60%);
  color:var(--text);
}
.container{
  min-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px 16px;
}
.card{
  width: min(520px, 100%);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border:1px solid var(--border);
  border-radius:16px;
  padding:22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
}
.logo{
  width:40px;height:40px;border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  background: rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  font-weight:700;
}
h1{margin:0 0 6px 0;font-size:22px}
p{margin:0}
.form{display:flex;flex-direction:column;gap:10px;margin-top:12px}
.label{font-size:13px;color:var(--muted)}
input, select{
  padding:12px 12px;
  border-radius:10px;
  border:1px solid var(--border);
  background: rgba(0,0,0,0.25);
  color: var(--text);
  outline:none;
}
input:focus, select:focus{
  border-color: rgba(43,108,255,0.8);
  box-shadow: 0 0 0 3px rgba(43,108,255,0.18);
}
.emailRow{
  display:flex;
  gap:10px;
  align-items:center;
}
.emailRow input{flex:1}
.domain{
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:10px;
  background: rgba(0,0,0,0.18);
  color: var(--muted);
  user-select:none;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.08);
  background: rgba(43,108,255,0.95);
  color:white;
  font-weight:600;
  cursor:pointer;
  text-decoration:none;
}
.btn:hover{filter:brightness(1.05)}
.muted{color:var(--muted);font-size:13px;line-height:1.5}
.status{min-height:18px;font-size:13px}
.status.err{color:var(--err)}
.status.ok{color:var(--ok)}
.question{
  padding:10px 12px;
  border-radius:10px;
  border:1px solid var(--border);
  background: rgba(0,0,0,0.18);
  color: var(--text);
  font-size:14px;
}
a{color:#cfe1ff}

/* Make the date picker calendar icon white (Chrome/Edge/Safari) */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.9;          /* optional */
    cursor: pointer;       /* optional */
}

/* If your background is not fully dark, tweak instead of full invert:
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(1.2);
}
*/
/* Make dropdown options readable */
select {
    color: #fff;                 /* selected value color on the closed select */
    background-color: #0f172a;   /* dark background for the select itself */
}

/* The opened dropdown list (options) */
select option {
    color: #111;                 /* dark text */
    background: #fff;            /* white background */
}

/* Disabled placeholder option */
select option:disabled {
    color: #6b7280;              /* gray */
}

