body.come-back #main_menu_outer,
body {
  background-color: #f2f3f4;
}
#form_outer {
  background: #ffffff;
  border-radius: 20px;
  max-width: 590px;
  width: 100%;
}
.radio-labels {
  height: 24px;
}
.input_wrapper .placeholder {
  left: 0;
}
.success_msg {
  display: none;
  background-color: #cbf1e4;
  border-left: 3px solid #00c39a;
  width: 100%;
  padding: 8px;
  align-items: center;
  justify-content: center;
}
.error_msg {
  display: none;
  background-color: #ffe6e6;
  border-left: 3px solid #eb3a41;
  width: 100%;
  padding: 8px;
  align-items: center;
  justify-content: center;
}
.success_msg img,
.error_msg img {
  margin-right: 8px;
}
.success_msg.show,
.error_msg.show {
  display: flex;
}
.success_msg.show,
.error_msg.show {
  display: flex;
  margin: 0 auto 15px auto;
}
[type='radio']:checked,
[type='radio']:not(:checked) {
  position: absolute;
  left: -9999px;
  display: none;
}
[type='radio']:checked + label,
[type='radio']:not(:checked) + label {
  position: relative;
  cursor: pointer;
  line-height: 20px;
  display: inline-flex;
  height: 24px;
  gap: 16px;
  align-items: center;
  font-weight: 600;
}
[type='radio']:not(:checked) + label:before {
  content: '';
  width: 18px;
  height: 18px;
  border: 1px solid #a1a1aa;
  border-radius: 50%;
  background: #fff;
}
[type='radio']:checked + label::before {
  content: '';
  width: 18px;
  height: 18px;
  border: 1px solid #614efa;
  border-radius: 50%;
  background: #fff;
}
[type='radio']:checked + label::after {
  content: '';
  width: 10px;
  height: 10px;
  background: #614efa;
  border-radius: 50%;
  position: absolute;
  left: 5px;
}
