body.page-registration #register-form{
  max-width: 980px;
  margin: 0 auto;
  background:#fff;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  padding:28px;
  border:1px solid rgba(0,0,0,.04);
}
body.page-registration .content-inner > h1{display:none}
body.page-registration #register-form fieldset.box{
  background:#fff;
  border:1px solid #e6eaed;
  border-radius:16px;
  padding:22px;
  margin:0 0 18px;
}
body.page-registration #register-form h4{
  margin:0 0 14px;
  font:800 22px/1.2 "Inter",system-ui,Segoe UI,Roboto,Arial;
  color:#063e46;
}
body.page-registration #register-form .form-group{margin:12px 0}
body.page-registration #register-form label{
  font:600 14px/1.35 system-ui;
  color:#0b1f28;
  margin-bottom:6px;
  display:block;
}
body.page-registration #register-form .form-control,
body.page-registration #register-form input,
body.page-registration #register-form select,
body.page-registration #register-form textarea{
  width:100%;
  background:#f5f7f8;
  border:1px solid #e6eaed;
  border-radius:25px;
  padding:12px 14px;
  font:500 15px/1.35 system-ui;
  color:#0b1f28;
  outline:none;
  min-height:44px;
  transition: box-shadow .2s ease, border-color .2s ease;
}
body.page-registration #register-form textarea{min-height:120px;resize:vertical}
body.page-registration #register-form ::placeholder{color:#8a98a3}
body.page-registration #register-form .form-control:focus,
body.page-registration #register-form input:focus,
body.page-registration #register-form select:focus,
body.page-registration #register-form textarea:focus{
  border-color:#00d7c2;
  box-shadow:0 0 0 4px rgba(0,215,194,.2);
  background:#fff;
}
body.page-registration #register-form input[type="submit"],
body.page-registration #register-form button[type="submit"]{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  min-height:44px;
  background:#00d7c2;
  color:#fff;
  border:0;
  border-radius:25px;
  font:700 14px/1 system-ui;
  text-transform:uppercase;
  cursor:pointer;
  transition:filter .35s ease;
}
body.page-registration #register-form input[type="submit"]:hover,
body.page-registration #register-form button[type="submit"]:hover{
  filter:brightness(.92);
}