@keyframes blink {
  0%, 100% {
    opacity: 1; }
  50% {
    opacity: 0; } }

@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0; }
  100% {
    transform: translateY(-1200px) rotate(720deg);
    opacity: 0;
    border-radius: 50%; } }

button#btn-google-login {
  margin-right: 15px; }

button#btn-facebook-login, button#btn-google-login {
  width: 40%;
  min-width: 115px;
  display: flex;
  align-items: center;
  justify-content: center; }
  button#btn-facebook-login svg, button#btn-google-login svg {
    fill: #fff;
    margin-right: 10px; }
  @media (max-width: 400px) {
    button#btn-facebook-login, button#btn-google-login {
      width: 100%;
      margin-right: 0;
      margin-bottom: 15px; } }

.gender-wrap {
  display: flex;
  gap: 30px; }
  .gender-wrap label {
    margin: 0 !important; }

.section {
  padding: 10%;
  display: flex;
  position: relative;
  background: #4e54c8;
  background: linear-gradient(90deg, #09bce4 0%, #2659f3 100%); }
  .section-box {
    display: flex;
    margin: auto;
    border-radius: 0.5rem;
    overflow: hidden; }
    .section-box .section-box--left {
      background: #fff;
      padding: 45px 35px;
      box-sizing: border-box;
      z-index: 2;
      position: relative;
      overflow: hidden;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      display: none; }
      @media (min-width: 992px) {
        .section-box .section-box--left {
          width: 18vw;
          display: flex; } }
    .section-box .section-box--right {
      padding: 45px 30px;
      box-sizing: border-box;
      overflow: hidden;
      transition: 0.5s ease;
      position: relative;
      background: rgba(0, 0, 0, 0.4);
      display: flex;
      /*justify-content: space-between;*/
      flex-wrap: wrap; }
      .section-box .section-box--right p {
        color: #fff; }
      .section-box .section-box--right h4 {
        color: #fff;
        text-align: center;
        text-transform: uppercase; }
      .section-box .section-box--right .form-group label {
        font-weight: 700;
        color: #dadada; }
      .section-box .section-box--right .form-group.style2 label {
        width: 100%;
        text-align: center; }
      .section-box .section-box--right .form-group.style2 .toggle-type {
        display: flex;
        border-radius: 25px;
        /*overflow: hidden;*/ }
        .section-box .section-box--right .form-group.style2 .toggle-type--item {
          font-weight: bold;
          cursor: pointer;
          width: 50%;
          padding: 15px;
          text-align: center;
          vertical-align: middle;
          color: #24C9B9;
          transition: all .4s;
          background: #fff; }
          .section-box .section-box--right .form-group.style2 .toggle-type--item.active {
            background-color: #24C9B9;
            color: #fff;
            box-shadow: 0px 0px 10px 0px rgba(189, 239, 239, 0.6); }
          .section-box .section-box--right .form-group.style2 .toggle-type--item:first-child {
            border-radius: 25px 0 0 25px; }
          .section-box .section-box--right .form-group.style2 .toggle-type--item:last-child {
            border-radius: 0 25px 25px 0; }
          @media (max-width: 767px) {
            .section-box .section-box--right .form-group.style2 .toggle-type--item {
              font-size: 14px; } }
      .section-box .section-box--right .form-control {
        background: transparent;
        border: none;
        box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.45);
        border-radius: 0;
        color: #fff;
        padding: 15px 0; }
        .section-box .section-box--right .form-control:-internal-autofill-selected, .section-box .section-box--right .form-control:-webkit-autofill, .section-box .section-box--right .form-control:-webkit-autofill:focus {
          background: transparent !important;
          transition: background-color 0s 600000s, color 0s 600000s; }
        .section-box .section-box--right .form-control::placeholder {
          /* Chrome, Firefox, Opera, Safari 10.1+ */
          color: rgba(255, 255, 255, 0.45);
          opacity: 1;
          /* Firefox */ }
        .section-box .section-box--right .form-control:-ms-input-placeholder {
          /* Internet Explorer 10-11 */
          color: rgba(255, 255, 255, 0.45); }
        .section-box .section-box--right .form-control::-ms-input-placeholder {
          /* Microsoft Edge */
          color: rgba(255, 255, 255, 0.45); }
        .section-box .section-box--right .form-control:focus {
          box-shadow: inset 0 -2px 0 #fff; }
      @media (max-width: 400px) {
        .section-box .section-box--right {
          padding: 15px 15px 0 15px; } }
    @media (min-width: 992px) {
      .section-box .section-box--right {
        width: 30vw; }
      .section-box.register .section-box--right {
        width: 35vw; } }
  .section .circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; }
  .section .circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.4);
    animation: animate 25s linear infinite;
    bottom: -150px; }
  .section .circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s; }
  .section .circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s; }
  .section .circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s; }
  .section .circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s; }
  .section .circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s; }
  .section .circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s; }
  .section .circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s; }
  .section .circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s; }
  .section .circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s; }
  .section .circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s; }
  @media (max-width: 575px) {
    .section {
      padding: 15px; } }

.bread-crumb {
  display: none; }

.group-b2b {
  display: none;
  flex-wrap: wrap;
  justify-content: space-between; }
  .group-b2b.active {
    display: flex; }
  .group-b2b > .form-group {
    width: calc(50% - 7.5px); }
