.mpa-wrap{
  width:100%;
  margin:0;
  padding:0;
}

.mpa-card{
  width:100%;
  max-width:720px;
  margin:0 auto;
  padding:34px;
  box-sizing:border-box;
  border:1px solid rgba(31,49,66,.10);
  border-radius:20px;
  background:#fff;
  box-shadow:0 12px 36px rgba(20,39,55,.08);
}

.mpa-form{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.mpa-field{
  display:flex;
  flex-direction:column;
  gap:9px;
}

.mpa-field label{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0;
  color:#33485a;
  font-size:16px;
  font-weight:650;
  line-height:1.3;
}

.mpa-icon{
  display:inline-flex;
  width:21px;
  height:21px;
  flex:0 0 21px;
  color:#40566a;
}

.mpa-icon svg{
  width:100%;
  height:100%;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.mpa-field input,
.mpa-field select{
  width:100%;
  height:54px;
  margin:0;
  padding:0 16px;
  box-sizing:border-box;
  border:1px solid #ccd4da;
  border-radius:9px;
  background:#fff;
  color:#273744;
  font:inherit;
  font-size:16px;
  line-height:1;
  box-shadow:none;
  transition:border-color .18s ease, box-shadow .18s ease;
}

.mpa-field input::placeholder{
  color:#7b8791;
  opacity:1;
}

.mpa-field select{
  cursor:pointer;
  color:#6f7b85;
}

.mpa-field select:valid{
  color:#273744;
}

.mpa-field input:hover,
.mpa-field select:hover{
  border-color:#aebbc4;
}

.mpa-field input:focus,
.mpa-field select:focus{
  outline:none;
  border-color:#0a3b5b;
  box-shadow:0 0 0 3px rgba(10,59,91,.10);
}

.mpa-consent{
  display:grid;
  grid-template-columns:22px 1fr;
  align-items:start;
  gap:11px;
  margin:0;
  color:#445767;
  font-size:14px;
  line-height:1.55;
  cursor:pointer;
}

.mpa-consent input{
  width:20px;
  height:20px;
  margin:1px 0 0;
  accent-color:#073b5c;
}

.mpa-consent a{
  color:#07517c;
  font-weight:600;
  text-decoration:none;
}

.mpa-consent a:hover,
.mpa-consent a:focus{
  text-decoration:underline;
}

.mpa-submit{
  width:100%;
  min-height:54px;
  margin:0;
  padding:13px 22px;
  border:0;
  border-radius:9px;
  background:#063a5b;
  color:#fff;
  font:inherit;
  font-size:16px;
  font-weight:700;
  line-height:1.2;
  cursor:pointer;
  box-shadow:none;
  transition:transform .15s ease, background-color .18s ease, box-shadow .18s ease;
}

.mpa-submit:hover{
  background:#052f4a;
  transform:translateY(-1px);
  box-shadow:0 8px 18px rgba(6,58,91,.16);
}

.mpa-submit:focus-visible{
  outline:3px solid rgba(6,58,91,.25);
  outline-offset:3px;
}

.mpa-message{
  margin:0 0 20px;
  padding:13px 15px;
  border-radius:9px;
  font-size:14px;
  line-height:1.5;
}

.mpa-success{background:#eaf7ed;color:#176b2c}
.mpa-error{background:#fdecec;color:#8a1f1f}
.mpa-info{background:#eef4fb;color:#23527c}
.mpa-hp{position:absolute!important;left:-9999px!important;opacity:0!important;height:1px!important;width:1px!important}

@media(max-width:640px){
  .mpa-card{
    padding:24px 18px;
    border-radius:15px;
  }

  .mpa-form{
    gap:18px;
  }

  .mpa-field input,
  .mpa-field select,
  .mpa-submit{
    min-height:50px;
    height:50px;
    font-size:15px;
  }
}
