* {
  margin: 0;
  padding: 0;
}



main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f0f0f0;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}

.form-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 12px;
  max-width: 700px;
}

.register-form {
  padding: 20px;
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.01);
  margin-bottom: 50px;
}

.register-login {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.register-login h2 {
  width: 50%;
  text-align: center;
  color: #121212;
  font-weight: 500;
  font-size: 24px;
  border-right: 1px solid #e7e7e7;
}

.register-login h2:last-child {
  border-right: none;
}

.register-login h2 a {
  color: #0064ae;
  font-size: 24px;
}

.form-heading h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 27px;
  color: #121212;
  text-align: center;
  margin-bottom: 25px;
}

.inline-form {
  display: flex;
  gap: 15px;

  div {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
}

.form-group {
  margin-bottom: 20px;
  width: 100%;
}

.form-group input,
.form-group select {
  width: 100%;
  height: 60px;
  padding: 10px;
  border: 1px solid #808080;
  border-radius: 5px;
  font-size: 16px;
  color: #121212;
}

.form-group input::placeholder {
  color: #484848;
  font-size: 18px;
}

.inline-form input[type="radio"] {
  width: auto;
  margin-right: 10px;
  height: 29px;
  width: 29px;
  border: 1px solid #808080;
  border-radius: 7px;
  appearance: none;
  position: relative;
}

.inline-form input[type="radio"]::before {
  content: "\2713";
  font-size: 20px;
  width: 25px;
  height: 25px;
  position: absolute;
  display: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.inline-form input[type="radio"]:checked::before {
  display: block;
}

.inline-form label {
  font-size: 16px;
  color: #121212;
}

.sm-ref {
  font-size: 14px;
  margin-bottom: 20px;
  display: block;
}

.form-group div {
  display: flex;
  align-items: center;
}

.form-group div input[type="checkbox"] {
  width: 25px;
  height: 25px;
  margin-right: 10px;
  border: 1px solid #808080;
  border-radius: 7px;
}

.form-group div label {
  font-size: 16px;
  color: #121212;
}

.privacy-policy input[type="radio"] {
  width: auto;
  margin-right: 10px;
  height: 20px;
  width: 20px;
  border: 1px solid #808080;
  border-radius: 7px;
  appearance: auto;

  position: relative;
}

.privacy-policy label {
  font-size: 10px;
  color: #121212;
}

.form-group button {
  padding: 10px 10px 12px;
  width: 200px;
  background-color: #0c86e3;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  margin: 0 auto;
  margin-top: 20px;
  display: block;
}

@media (max-width: 768px) {
  .register-login h2 {
    font-size: 15px;
  }
  .register-login h2 a {
    font-size: 15px;
  }
  .form-heading h3 {
    font-size: 15px;
  }
  .inline-form {
    display: block;
  }

  .form-group input,
  .form-group select {
    height: 40px;
  }

  .form-heading{
    max-width: 100% !important;
  }
}
