/* Root & base */
:root{
  --bg: #faf8f6;
  --card: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --accent: #bc320b;
  --accent-hover: #a13314;
  --ring: rgba(176,61,29,.35);
  --border: #e5e7eb;
  --radius: 16px;
}

/* If you enabled a Google Font, set it here */
html, body {
  height: 100%;
}
body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  color: var(--text);
  background: #fff9f2;
  line-height: 1.5;
}




/* Layout */

.container2{
  max-width: 640px;
  margin: 6vh auto;
  padding: 24px;
  background: #fff9f2;
  border: 0px;
	
}


.container{
	width: 70%;
  max-width: 640px;
  margin: 6vh auto;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow:
    0 30px 60px rgba(0,0,0,.06),
    inset 0 1px 0 rgba(255,255,255,.6);
	
 
}

.title{
  margin: 0 0 12px;
  font-size: 1.75rem;
  letter-spacing: .2px;
}

.form{
  margin-top: 12px;
}

/* Fields */
.field{
  margin: 18px 0;
}

.label{
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.input{
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  transition: box-shadow .2s ease, border-color .2s ease, transform .05s ease;
  font-size: 1rem;
}

.input:focus{
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--ring);
}

/* Radios */
.radios{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.radio{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  user-select: none;
  cursor: pointer;
  transition: background .15s ease, border-color .2s ease, transform .05s ease;
}

.radio:hover{
  background: #f9fafb;
  border-color: #d1d5db;
}

.radio input{
  transform: translateY(1px);
}

/* Button */
.button{
  appearance: none;
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  border: 0;
  background: linear-gradient(180deg, var(--accent), var(--accent-hover));
  color: #fff;
  font-weight: 600;
  letter-spacing: .2px;
  cursor: pointer;
  transition: transform .05s ease, filter .2s ease, box-shadow .2s ease;
  box-shadow: 0 10px 20px rgba(176,61,29,.25), inset 0 1px 0 rgba(255,255,255,.3);
}

.button:hover{ filter: brightness(1.05); }
.button:active{ transform: translateY(1px); }
.button:focus{
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
}

/* Messages (use in PHP output if desired) */
.notice{
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #f8fafc;
  color: var(--muted);
}
.notice.error{
  background: #fff7f7;
  border-color: #fca5a5;
  color: #991b1b;
}
.notice.success{
  background: #f0fdf4;
  border-color: #86efac;
  color: #14532d;
}

/* Honeypot (kept off-screen, not display:none to avoid some bots) */
.hp{
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
