.auto-app-wrap{
  max-width: 960px;
  margin: 50px auto;
  padding: 0 18px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#1d2939;
}

.auto-app-card{
  background:#ffffff;
  border-radius:20px;
  padding:28px;
  box-shadow: 0 20px 45px rgba(16,24,40,.08);
  border:1px solid #eef2f6;
}

.auto-app-title{
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.auto-app-sub{
  color:#667085;
  font-size: 13px;
  margin-bottom: 20px;
}

.auto-app-section{
  margin-top: 28px;
  padding-top: 22px;
  border-top:1px solid #f1f3f7;
}

.auto-app-section:first-of-type{
  border-top:0;
  padding-top:0;
  margin-top:0;
}

.auto-app-section h3{
  font-size:15px;
  font-weight:600;
  margin-bottom:16px;
  color:#1f4f99;
}

.auto-app-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:16px;
}

.auto-app-field{
  display:flex;
  flex-direction:column;
}

.auto-app-field label{
  font-size:12px;
  font-weight:600;
  color:#344054;
  margin-bottom:6px;
}

.auto-app-field input,
.auto-app-field select,
.auto-app-field textarea{
  width:100%;
  border:1px solid #d0d5dd;
  border-radius:14px;
  padding:11px 14px;
  font-size:14px;
  background:#fff;
  transition:all .2s ease;
}

.auto-app-field textarea{
  min-height:120px;
  resize:vertical;
}

.auto-app-field input:focus,
.auto-app-field select:focus,
.auto-app-field textarea:focus{
  border-color:#1f4f99;
  box-shadow: 0 0 0 4px rgba(31,79,153,.12);
  outline:none;
}

.auto-app-field input[type="radio"],
.auto-app-field input[type="checkbox"]{
  width:auto;
  margin-right:6px;
}

.auto-app-field input[type="file"]{
  padding:8px;
  background:#f9fafb;
  border:1px dashed #d0d5dd;
}

.owner_row{
  background:#f9fafc;
  border:1px solid #e5eaf0;
  border-radius:16px;
  padding:16px;
  margin-bottom:16px;
}

#add_owner{
  background:#eef2ff;
  border:0;
  padding:10px 16px;
  border-radius:999px;
  font-weight:600;
  cursor:pointer;
}

#add_owner:hover{
  background:#dbe4ff;
}

.remove_owner{
  background:#fee2e2;
  border:0;
  padding:6px 12px;
  border-radius:999px;
  font-size:12px;
  cursor:pointer;
}

.remove_owner:hover{
  background:#fecaca;
}

.auto-app-actions{
  display:flex;
  justify-content:flex-end;
  gap:12px;
  margin-top:28px;
  padding-top:18px;
  border-top:1px solid #f1f3f7;
}

.auto-app-btn{
  background:#f7941d;
  border:0;
  color:#111;
  font-weight:700;
  padding:14px 22px;
  border-radius:999px;
  cursor:pointer;
  transition:all .2s ease;
}

.auto-app-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 8px 20px rgba(247,148,29,.25);
}

@media (max-width: 768px){
  .auto-app-grid{
    grid-template-columns:1fr;
  }
}