body {
  margin:0;
  background:#f4f6f8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  color:#111827;
}

/* Page container */

.page{
  max-width:900px;
  margin:40px auto;
  padding:32px;
  background:white;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* Header */

.form-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 30px;
  font-family: Arial, sans-serif;
}

.header{
  text-align:center;
  margin-bottom:32px;
}

.logo{
  max-width:200px;
  margin-bottom:16px;
}

h1{
  margin:0;
  font-size:28px;
  font-weight:700;
}

/* Sections */

.section{
  margin-bottom:32px;
  padding:24px;
  border-radius:10px;
  border:1px solid #e5e7eb;
  background:#fafafa;
}

.section h3{
  margin-top:0;
  margin-bottom:18px;
  font-size:18px;
  font-weight:600;
}

/* Fields */

.field-wrap{
  margin-bottom:18px;
}

label{
  display:block;
  font-weight:600;
  margin-bottom:6px;
  font-size:14px;
  color:#374151;
}

input,
select,
textarea{
  width:100%;
  padding:10px 12px;
  border-radius:6px;
  border:1px solid #d1d5db;
  font-size:14px;
  transition:all .15s;
}

input:focus,
select:focus,
textarea:focus{
  outline:none;
  border-color:#2563eb;
  box-shadow:0 0 0 2px rgba(37,99,235,.15);
}

/* Buttons */

button{
  background:#2563eb;
  color:white;
  border:none;
  padding:12px 18px;
  border-radius:6px;
  font-weight:600;
  cursor:pointer;
  transition:all .15s;
}

button:hover{
  background:#1d4ed8;
}

#submitBtn{
  width:100%;
  margin-top:20px;
  font-size:16px;
}

/* Repeatable cards */

.repeatable-card{
  border:1px solid #e5e7eb;
  border-radius:8px;
  padding:16px;
  margin-bottom:16px;
  background:white;
}

.repeatable-card h4{
  margin-top:0;
}

/* Autocomplete */

.autocomplete-results{
  border:1px solid #ddd;
  border-top:none;
  background:white;
  max-height:200px;
  overflow-y:auto;
}

.autocomplete-item{
  padding:8px 10px;
  cursor:pointer;
  border-top:1px solid #eee;
}

.autocomplete-item:hover{
  background:#f3f4f6;
}

/* Status */

#status{
  margin-bottom:20px;
  font-weight:500;
  color:#2563eb;
}