
form#registration-step-1 {
    max-width: 800px;
    width: 88%;
    margin: 0 auto;
}

form#registration-step-2 {
    max-width: 550px;
    width: 88%;
    margin: 0 auto;
}

.auth h1 {
    padding: 10px 0;
}

.auth h4 {
    padding-bottom: 40px;
    display: block;
}

#registration-step-1 input[type="radio"] {
  display: none;
}

#registration-step-1 input[type="radio"]:disabled ~ label {
    color: hsla(150, 5%, 75%, 1);
    border-color: hsla(150, 5%, 75%, 1);
    box-shadow: none;
    cursor: not-allowed;
}

#registration-step-1 input[type="radio"]:not(:disabled) ~ label {
    cursor: pointer;
}

.profile-type {
    display: flex;
    justify-content: space-between;
    padding: 30px 0 40px 0;
}

.profile-type>div {
    max-width: 250px;
    width: 32%;
}

#registration-step-1 label {
  display: block;
  background: white;
  border: 4px solid #F1F1F3;
  transition: all .3s ease;
  border-radius: 8px;
  padding: 1rem;
  width: 100%;
  margin: 30px 0;
  text-align: center;
  position: relative;
}


#registration-step-1 input[type="radio"]:checked + label {
  background: #fff;
  border: 4px solid #258CEB;
}

#registration-step-1 input[type="radio"]:checked + label h3 {
    color: #258CEB;
}

#registration-step-1 input[type="radio"]:checked + label::after {
    color: #fff;
    font-family: FontAwesome;
    content: "\f00c";
    font-size: 20px;
    position: absolute;
    top: 16px;
    left: 86%;
    transform: translateX(-50%);
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: #258CEB;
    box-shadow: 0px 2px 5px -2px hsla(0, 0%, 0%, 0.25);
}

#registration-step-1 img {
    width: 120px;
}

#registration-step-1 button {
    width: 100%;
}

.form-footer {
    text-align: center;
    padding: 30px 0 10px 0;
}

.form-footer p {
    color: #374151;
    font-size: 16px;
    font-weight: 500;
}

.form-footer a {
    color: #258CEB;
    font-size: 16px;
    font-weight: 500;
}

.form-footer a.first {
    margin-bottom: 20px;
    display: block;
}

.form-footer a:hover {
    text-decoration: underline;
}

.auth .icon {
    margin: 10px auto;
    width: 120px;
}

form.centered {
    text-align: center !important;
}