.register_container {
  background: #f5f5f5;
  padding-top: 100px;
  padding-bottom: 150px;
}
.register_container .register_form {
  display: flex;
  flex-direction: column;
  margin: auto;
  background: #ffffff;
  width: 600px;
  max-width: 100%;
  height: auto;
  margin-top: 80px;
  margin-bottom: 80px;
  padding: 50px 50px;
  border-radius: 10px;
}
.register_container .register_form input {
  border: 1px solid #D8D8D8;
  background: transparent;
  height: 60px;
  border-radius: 5px;
}
.register_container .register_form h1 {
  font-size: 30px;
}
.register_container .register_form h1 span {
  color: #DB6925;
}
.register_container .register_form .have_account {
  float: right;
}
.register_container .register_form .have_account p {
  color: #000000;
}
.register_container .register_form .have_account p span {
  color: #DB6925;
}
.register_container .register_form .register_btn {
  width: 100%;
  height: 60px;
  border-radius: 5px;
  color: #ffffff;
  font-size: 24px;
  border: none;
  outline: none;
  transition: 0.5s;
  background: radial-gradient(100% 189.27% at 83.25% 0%, #FF8C47 0%, #DB6925 100%);
}
.register_container .register_form .register_btn:hover {
  background: radial-gradient(104.71% 104.71% at 10.37% 5.46%, #efc64a 0%, #e97719 100%) !important;
}
.register_container .register_form .share_icons {
  text-align: center;
  width: 130px;
  display: flex;
  margin: auto;
  padding: 20px 0px;
  padding-bottom: 0px;
  justify-content: center;
}

@media (max-width: 1600px) {
  .register_container .register_form h1 {
    font-size: 24px;
  }
  .register_container .register_form input {
    height: 50px;
  }
  .register_container .register_form .register_btn {
    font-size: 18px;
    height: 50px;
  }
}
@media (max-width: 767px) {
  .register_container .register_form {
    padding: 25px;
  }
  .register_container .register_form {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
