* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  .container {
    position: relative;
    margin: 100px auto;
    background: #fff;
    box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.25);
    border-radius: 3px;
    width: 800px;
    max-width: 800px;
    min-height: 480px;
    overflow: hidden;
    position: relative;
  }
  .navbar-brand.login, .back-btn {
   position: absolute;
    top: 20px;
    left: 20px;
    z-index: 99;
}
.back-btn {
  top: auto;
  bottom: 20px;
  color: #39b549;
  text-decoration: none;
  border-radius: 30px;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 14px;
}
.back-btn i:before {
  font-size: 13px;
}
.back-btn i {
  margin-right: 7px;
}
  .animateWidth {
    -webkit-animation: animateWidth 0.8s linear forwards;
    animation: animateWidth 0.8s linear forwards;
  }
  
  @-webkit-keyframes animateWidth {
    0% {
      width: 35%;
    }
    20% {
      width: 50%;
    }
    100% {
      width: 35%;
    }
  }
  @keyframes animateWidth {
    0% {
      width: 35%;
    }
    20% {
      width: 50%;
    }
    100% {
      width: 35%;
    }
  }
  .form__container {
    position: absolute;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 65%;
    height: 100%;
    padding: 25px;
    text-align: center;
    background: #fff;
    transition: all 0.6s ease-in;
  }
  .go-login .form__container-login {
    left: 35%;
    opacity: 0;
  }
  .go-register .form__container-login {
    left: 0;
    opacity: 1;
    z-index: 0;
  }
  .go-login .form__container-register {
    left: 35%;
    opacity: 1;
    z-index: 0;
  }
  .go-register .form__container-register {
    left: 0;
    opacity: 0;
  }
  
  .form {
    width: 100%;
  }
  .form__heading {
    font-size: 40px;
    margin-bottom: 15px;
  }
  .form__field {
    width: 100%;
    height: 35px;
    line-height: 35px;
    padding-left: 15px;
    margin-bottom: 15px;
    background: #f4f8f7;
    border: none;
  }
  .form__field:last-child {
    margin-bottom: 0;
  }
  .form__field::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    text-transform: capitalize;
  }
  .form__field::-moz-placeholder {
    /* Firefox 19+ */
    text-transform: capitalize;
  }
  .form__field:-ms-input-placeholder {
    /* IE 10+ */
    text-transform: capitalize;
  }
  .form__field:-moz-placeholder {
    /* Firefox 18- */
    text-transform: capitalize;
  }
  .form__field:focus, .form__field:active {
    outline: 0;
  }
  .form__text {
    margin-bottom: 15px;
    font-size: 14px;
  }
  
  .list {
    padding-left: 0;
  }
  .list__inline {
    margin-bottom: 15px;
  }
  .list__inline .list__item {
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
    border: 1px solid #333;
    width: 30px;
    height: 30px;
    border-radius: 50%;
  }
  .list__inline .list__link {
    color: #333;
    text-decoration: none;
  }
  .list__inline .list__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  
  .overlay-container {
    position: absolute;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 35%;
    text-align: center;
    background: #39b549;
    transition: all 0.8s cubic-bezier(0.67, 0.67, 0.34, 0.95);
  }
  .go-login .overlay-container {
    right: 65%;
  }
  .go-register .overlay-container {
    right: 0;
  }
  
  .overlay {
    padding: 25px;
    color: #fff;
    position: absolute;
    width: 100%;
  }
  .overlay__heading {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .overlay__desc {
    max-width: 230px;
    width: 230px;
    margin: auto;
    margin-bottom: 25px;
  }
  .overlay--left {
    opacity: 0;
    z-index: 99;
  }
  .go-login .overlay--left {
    z-index: 99;
    opacity: 1;
  }
  .go-register .overlay--left {
    opacity: 0;
    z-index: -1;
  }
  .overlay--right {
    opacity: 0;
    z-index: 99;
  }
  .go-login .overlay--right {
    opacity: 0;
    z-index: -1;
  }
  .go-register .overlay--right {
    z-index: 99;
    opacity: 1;
  }
  
  .btn {
    padding: 10px 30px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    background: #fff;
    color: #39b549 !important;
    font-weight:600;
  }
  .btn--main {
    background: #39b549;
    color: #fff !important;
}
  .btn--main-outline {
    border: 2px solid linear-gradient(45deg, #2980b9, #3498db);
    color: #2980b9;
  }
  .btn:hover {
    cursor: pointer;
  }
  .btn:focus, .btn:active {
    outline: 0;
  }
  img.custom-logo.logo-white {
    position: absolute;
    left: 0;
    opacity:0;
}
.custom-logo {
    width: 200px;
}
.container.go-login img.custom-logo.logo-white{
    opacity:1;
}

.container.go-login .back-btn{
    color:#fff
}



@media only screen and (min-width: 320px) and (max-width: 767px) {
  .login-module{
    padding: 5px;
  }
  .btn{
    padding: 7px 24px;
    background: #39b549;
    color: #fff !important;
  }
  .container.go-login .back-btn {
    color: #39b549;
}
.form__container{
  transition: unset;
}
  .overlay{
    top: 11px;
    width: auto;
    right: 0;
  }
  .container.go-login img.custom-logo.logo-white {
    opacity: 0;
}
  .overlay__heading, .overlay__desc{
    display:none;
  }
  .form__container{
    width: 100%;  
  }
  .overlay-container{
    position: unset;
  }
  .go-login .form__container-register{
    left: 0;
  }
  .container{
    width: 100%;
    max-width: 100%;
  }
}