/* Hire Med Talent - Coming Soon Landing Page */
:root{
  --bg1:#0d3b66;      /* deep scrub blue */
  --bg2:#1f6f8b;      /* teal blue */
  --card:rgba(255,255,255,0.10);
  --card-border:rgba(255,255,255,0.16);
  --text:#ffffff;
  --muted:rgba(255,255,255,0.82);
  --accent:#2ec4b6;   /* fresh teal accent */
  --accent2:#e0fbfc;  /* very light teal */
  --shadow: 0 18px 50px rgba(0,0,0,0.35);
}

*{ box-sizing:border-box; }

html, body{
  height:100%;
}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, Helvetica, sans-serif;
  color:var(--text);

  /* Base gradient + subtle medical pattern overlay */
  background:
    /* subtle pattern */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.08'%3E%3Cpath d='M110 20v40M110 160v40M20 110h40M160 110h40' stroke-width='10' stroke-linecap='round'/%3E%3Ccircle cx='50' cy='50' r='22' stroke-width='6'/%3E%3Ccircle cx='170' cy='170' r='22' stroke-width='6'/%3E%3Cpath d='M30 170c20-20 40-40 60-60s40-40 60-60' stroke-width='4' stroke-linecap='round'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(135deg, var(--bg1), var(--bg2));
  background-repeat: repeat, no-repeat;
  background-size: 220px 220px, cover;
  background-attachment: fixed;
}

.page{
  min-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:32px 16px;
}

.container{
  width:min(860px, 100%);
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap:22px;
}

@media (max-width: 840px){
  .container{ grid-template-columns:1fr; }
}

.card{
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 28px;
  backdrop-filter: blur(10px);
}

.brand{
  display:flex;
  gap:18px;
  align-items:center;
  margin-bottom:18px;
}

.logo{
  width:84px;
  height:auto;
  flex:0 0 auto;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.25));
}

.brand h1{
  margin:0;
  font-size: 26px;
  line-height:1.2;
  letter-spacing: 0.4px;
}

.brand p{
  margin:6px 0 0 0;
  color:var(--muted);
}

.hero h2{
  margin: 0 0 10px 0;
  font-size: 40px;
  letter-spacing: 0.6px;
}

.hero .sub{
  margin: 0 0 18px 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.08);
  font-size: 14px;
  color: rgba(255,255,255,0.92);
}

.pill svg{
  width:16px;
  height:16px;
  opacity:0.92;
}

.form h3{
  margin: 0 0 10px 0;
  font-size: 18px;
  letter-spacing: 0.3px;
}

.form p{
  margin: 0 0 16px 0;
  color: var(--muted);
  line-height: 1.45;
}

.form-row{
  display:flex;
  gap:10px;
  width:100%;
}

@media (max-width: 520px){
  .form-row{ flex-direction:column; }
}

input[type="email"]{
  flex:1;
  width:100%;
  padding: 14px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(6, 22, 35, 0.22);
  color: var(--text);
  outline:none;
}

input[type="email"]::placeholder{
  color: rgba(255,255,255,0.55);
}

button{
  padding: 14px 16px;
  border-radius: 12px;
  border: none;
  cursor:pointer;
  font-weight: 700;
  background: var(--accent);
  color: #073642;
  transition: transform .08s ease, filter .2s ease, opacity .2s ease;
  white-space:nowrap;
}

button:hover{
  filter: brightness(1.05);
}

button:active{
  transform: translateY(1px);
}

.small{
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.72);
}

.status{
  margin-top: 14px;
  padding: 12px 12px;
  border-radius: 12px;
  display:none;
  font-size: 14px;
  line-height:1.35;
}

.status.ok{
  display:block;
  background: rgba(46, 196, 182, 0.18);
  border: 1px solid rgba(46, 196, 182, 0.35);
}

.status.err{
  display:block;
  background: rgba(255, 99, 132, 0.18);
  border: 1px solid rgba(255, 99, 132, 0.35);
}

.footer{
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

a{
  color: var(--accent2);
  text-decoration: none;
}

a:hover{ text-decoration: underline; }

.kbd{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 8px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
}
