.site-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.popover-form-wrapper {
    width: 100%;
        height: 100vh;
        margin-bottom: 50px;
}
.register-tab {
  position: fixed;
  bottom: 0;
  right: 20px;
  background-color: #00A2B7;
  padding: 17px 25px;
  cursor: pointer;
  border-radius: 10px 10px 0 0;
}
.register-tab p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
}
@media all and (min-width: 1024px) {
  .register-tab {
    top: 370px;
    right: -42px;
    bottom: auto;
    transform: rotate(-90deg);
  }
}

@keyframes fadeInOpacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.register-tab-popup {
  position: fixed;
  right: 0px;
  width: 50vw;
  transition: bottom 0.3s ease-out;
  bottom: calc(-300vw - 50px);
  z-index: 99999;
}
.register-tab-popup::before {
  background-color: rgba(0, 0, 0, 0.2);
  content: "";
  display: none;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  position: fixed;
  z-index: -1;
}
.register-tab-popup--active {
  bottom: 0;
}
.register-tab-popup--active::before {
  display: block;
  animation: fadeInOpacity 0.4s ease forwards;
}
.register-tab-popup__inner {
  padding: 0;
  z-index: 1;
  height: 700px;
  width: 50vw;
  top: 0;
  position: relative;
}
.register-tab-popup__inner .inner-container {
    display: flex;
    width: 50vw;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 5%;
    padding-left: 0;
}

.register-tab-popup__inner .inner-container .inner-column {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.register-tab-popup__inner .inner-container .inner-column.left {
    width: 90%;
    justify-content: flex-start;
}

.register-tab-popup__inner .inner-container .inner-column.left .hbspt-form label {
    color: #ffffff;
    font-weight: 400;
    font-size: 14px;
}

.register-tab-popup__inner .inner-container .inner-column.left {
    justify-content: flex-start;
    padding: 0 5%;
}

.register-tab-popup__inner .inner-container .inner-column.right {
    justify-content: flex-start;
    width: 10%;
}

.register-tab-popup__inner .inner-container .inner-column.left .hbspt-form {
    width: 75%;
}

.register-tab-popup__inner .inner-container .inner-column.left .hbspt-form form label {
    color: #fff;
    display: block;
    font-family: Roboto, sans-serif !important;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    margin-bottom: 4px !important;
    padding: 0;
    text-align: left;
    width: auto;
}

.register-tab-popup__inner .inner-container .inner-column.right .hbspt-form form .hs-form-field {
    float: none !important;
    margin-top: 2rem !important;
}

.register-tab-popup__inner .inner-container .inner-column.right .hbspt-form form .hs-submit {
    margin-top: 3rem !important;
}

.register-tab-popup__inner .form-horizontal .form-group .form-control {
  margin-bottom: 16px;
}
.register-tab-popup__inner h4,
.register-tab-popup__inner p {
  color: #ffffff;
  text-align: center;
}
.register-tab-popup__inner h4 {
  font-size: 30px;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.register-tab-popup__close {
    position: relative;
    top: 0;
    right: auto;
    left: 0;
    transform: unset;
    background-color: transparent;
    width: auto;
    border: 1px solid #00A2B7;
    border-radius: 5px;
    padding: 5px 10px;
}
.register-tab-popup__close p {
  margin: 0;
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #00A2B7;
  text-align: center;
}
@media all and (min-width: 1024px) {
  .register-tab-popup {
    bottom: calc(-300vw - 50px);
    right: calc(-75vw - 50px);
    width: 730px;
    transition: right 0.3s ease-out;
    max-width: 77.5rem;
  }
  .register-tab-popup--active {
    right: 0;
    bottom: 0;
    width: 50vw;
    max-width: 50vw;
  }
}
@media all and (max-width: 768px) {
    .register-tab-popup {
        width: 75vw;
    }
    .register-tab-popup__inner {
        width: 75vw;
    }
    .register-tab-popup__inner .inner-container {
        width: 75vw;
    }
}
@media all and (max-width: 576px) {
    .register-tab-popup {
        width: 100vw;
    }
    .register-tab-popup__inner {
        width: 100vw;
    }
    .register-tab-popup__inner .inner-container {
        width: 100vw;
    }
}