* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  }
  
  .container {
    width: 100%;
    height: 100vh;
    background: #231F20;
    overflow-x: hidden;
  }
  .warning{
    color: #fff;
    padding:10px;
  }
  
  .bold{
    color:#DC143C;
    font-weight: bold;
    font-size:20px;
  }
  .mainBox {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  
  .centeredBox {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1100px;
    height: 400px;
    background: rgba(18, 217, 97);
    box-shadow: 3px 15px 32px 10px rgba(66, 66, 67, 0.37);
    backdrop-filter: blur(1px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    position: relative;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
  
  .toLeft {
    position: absolute;
    height: 500px;
    width: 549px;
    border-radius: 10px;
    right: 35px;
    animation: translateToLeft 1s 1;
    background-color: rgb(18, 217, 97);
    z-index: 999;
    -webkit-animation: translateToLeft 1s 1;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
  
  .fakeSignupDiv {
    position: absolute;
    height: 500px;
    width: 549px;
    border-radius: 10px;
    right: 35px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
  
  @keyframes translateToLeft {
    0% {
      transform: translateX(0px);
      -webkit-transform: translateX(0px);
      -moz-transform: translateX(0px);
      -ms-transform: translateX(0px);
      -o-transform: translateX(0px);
}
    100% {
      transform: translateX(-490px);
      display: none;
      -webkit-transform: translateX(-490px);
      -moz-transform: translateX(-490px);
      -ms-transform: translateX(-490px);
      -o-transform: translateX(-490px);
}
  }
  
  .fakeSigninDiv {
    position: absolute;
    height: 500px;
    width: 549px;
    border-radius: 10px;
    left: 38px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
  
  .toRight {
    position: absolute;
    height: 500px;
    width: 549px;
    border-radius: 10px;
    left: 38px;
    background-color: rgb(18, 217, 97);
    animation: translateToRight 1s 1;
    z-index: 999;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    -webkit-animation: translateToRight 1s 1;
}
  
  @keyframes translateToRight {
    0% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(488px);
    }
  }
  
  .loginBoxVisibility {
    display: block;
    height: 100%;
    width: 549px;
    z-index: 3;
  }
  
  .loginBox {
    color:#fff;
    height: 100%;
    width: 549px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .signupBoxVisibility {
    display: none;
    height: 100%;
    width: 549px;
    z-index: 3;
  }
  
  .signupBox {
    height: 100%;
    width: 549px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
  }
  
  .btn {
    border-radius: 5px;
    border: 0;
    outline: none;
    width: 80px;
    height: 38px;
    background: rgb(105, 135, 152);
    cursor: pointer;
    transition: background 2s ease;
    color: #fff;
  }
  
  .btn:hover {
    background: rgb(215, 160, 79);
    transform: scale(1.1);
  }
  
  .btnBox {
    padding: 20px 0;
  }
  
  /*login form*/
  
  .loginForm {
    height: 500px;
    width: 549px;
    display: none;
    background-color: #12dcf7;
    border-radius: 0px;
    position: relative;
    left: 23px;
    -webkit-border-radius:;
    -moz-border-radius:;
    -ms-border-radius:;
    -o-border-radius:;
}
  
  .mainLoginBox {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
  }
  
  .loginVisibility {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    animation: runningInLogin 1s 1;
    -webkit-animation: runningInLogin 1s 1;
}
  
  .inn {
    text-align: center;
    width: 100%;
    animation: runningInLogin 1s 1;
  }
  @keyframes runningInLogin {
    0% {
      transform: translateX(-80px);
      opacity: 0;
    }
    20% {
      opacity: 1;
    }
    50% {
      opacity: 1;
    }
  
    60% {
      opacity: 1;
    }
  
    70% {
      opacity: 1;
    }
  
    80% {
      opacity: 1;
    }
    100% {
      transform: translateX(0px);
      opacity: 1;
    }
  }
  
  .outt {
    text-align: center;
    width: 100%;
    animation: runningOutLogin 1s 1;
  }
  
  @keyframes runningOutLogin {
    0% {
      transform: translateX(0px);
      opacity: 1;
    }
    10% {
      opacity: 0;
    }
    20% {
      opacity: 0;
    }
    50% {
      opacity: 0;
    }
  
    60% {
      opacity: 0;
    }
  
    70% {
      opacity: 0;
    }
  
    80% {
      opacity: 0;
    }
    100% {
      transform: translateX(-1600px);
      opacity: 0;
    }
  }
  
  .loginTitle {
    font-size: 25px;
  }
  
  .loginFormInput {
    width: 100%;
    padding: 10px 0;
    text-align: center;
  }
  
  .input {
    padding: 15px 80px;
  }
  
  input {
    padding: 10px;
    border-radius: 0px;
    
    
    width: 100%;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}
  
  .LoginBtn {
    border-radius: 5px;
    border: 0;
    outline: none;
    width: 80px;
    height: 38px;
    background: rgb(110, 97, 166);
    cursor: pointer;
    transition: background 2s ease;
    color: #fff;
    -webkit-transition: background 2s ease;
    -moz-transition: background 2s ease;
    -ms-transition: background 2s ease;
    -o-transition: background 2s ease;
    -webkit-border-radius:;
    -moz-border-radius:;
    -ms-border-radius:;
    -o-border-radius:;
}
  
  .btn:hover {
    background: rgb(151, 79, 215);
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}
  
  /*signup form*/
  
  .signupForm {
    height: 500px;
    width: 549px;
    display: block;
    background-color: #12dcf7;
    border-radius: 0px;
    position: relative;
    right: 22px;
    -webkit-border-radius:;
    -moz-border-radius:;
    -ms-border-radius:;
    -o-border-radius:;
}
  
  .mainSignupBox {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
  }
  
  .signupVisibility {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    animation: runningInMainSignup 1s 1;
    -webkit-animation: runningInMainSignup 1s 1;
}
  
  .in {
    text-align: center;
    width: 100%;
    animation: runningInMainSignup 1s 1;
    -webkit-animation: runningInMainSignup 1s 1;
}
  @keyframes runningInMainSignup {
    0% {
      transform: translateX(100px);
      opacity: 0;
      -webkit-transform:;
      -moz-transform:;
      -ms-transform:;
      -o-transform:;
}
  
    20% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
  
    60% {
      opacity: 1;
    }
  
    70% {
      opacity: 1;
    }
  
    80% {
      opacity: 1;
    }
    100% {
      transform: translateX(0px);
      opacity: 1;
      -webkit-transform:;
      -moz-transform:;
      -ms-transform:;
      -o-transform:;
}
  }
  
  .out {
    text-align: center;
    width: 100%;
    animation: runningOutMainSignup 1s 1;
    -webkit-animation: runningOutMainSignup 1s 1;
}
  
  @keyframes runningOutMainSignup {
    0% {
      transform: translateX(0px);
      opacity: 1;
      -webkit-transform:;
      -moz-transform:;
      -ms-transform:;
      -o-transform:;
}
    18% {
      opacity: 0;
    }
    20% {
      opacity: 0;
    }
    50% {
      opacity: 0;
    }
  
    60% {
      opacity: 0;
    }
  
    70% {
      opacity: 0;
    }
  
    80% {
      opacity: 0;
    }
    100% {
      transform: translateX(400px);
      opacity: 0;
      -webkit-transform:;
      -moz-transform:;
      -ms-transform:;
      -o-transform:;
}
  }
  .signupTitle {
    font-size: 25px;
  }
  
  .signupFormInput {
    width: 100%;
    padding: 10px 0;
    text-align: center;
  }
  
  .input {
    padding: 10px 80px;
  }
  
  input {
    padding: 10px;
    border-radius: 0px;
    
    width: 100%;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}
  
  .signupBtn {
    border-radius: 5px;
    border: 0;
    outline: none;
    width: 80px;
    height: 38px;
    background: rgb(110, 97, 166);
    cursor: pointer;
    transition: background 2s ease;
    color: #fff;
  }
  
  .btn:hover {
    background: rgb(151, 79, 215);
    transform: scale(1.1);
  }
  
  @media screen and (max-width: 1120px) {
    .centeredBox {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column-reverse;
      width: 900px;
      height: 600px;
      padding: 20px;
    }
    .loginBoxVisibility {
      display: block;
      height: 100%;
      width: 100%;
      z-index: 3;
    }
  
    .loginBox {
      height: 100%;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      padding: 20px;
    }
  
    .signupBoxVisibility {
      display: none;
      height: 100%;
      width: 100%;
      z-index: 3;
    }
  
    .signupBox {
      height: 100%;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      padding: 20px;
    }
    .loginForm {
      width: 100%;
      height: 450px;
      display: none;
      background-color: #fff;
      border-radius: 10px;
      position: relative;
      left: 0px;
      padding: 0;
    }
  
    .mainLoginBox {
      width: 100%;
      height: 450px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }
  
    .loginVisibility {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-direction: column;
      animation: runningInLogin 1s 1;
    }
  
    .input {
      padding: 15px 20px;
    }
  
    .signupForm {
      width: 100%;
      height: 450px;
      display: block;
      background-color: #fff;
      border-radius: 10px;
      position: relative;
      right: 0;
      padding: 0;
    }
  
    .mainSignupBox {
      width: 100%;
      height: 450px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }
  
    .signupVisibility {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-direction: column;
      animation: runningInMainSignup 1s 1;
    }
  
    .btnBox {
      padding: 20px 0 0;
    }
  
    input {
      box-shadow: none;
      border: 1px solid rgb(204, 184, 184);
    }
  
    .toLeft {
      position: absolute;
      height: 500px;
      width: 549px;
      border-radius: 10px;
      right: 35px;
      animation: translateToLeft 1s 1;
      background-color: #fff;
      z-index: 999;
    }
  
    .fakeSignupDiv {
      position: absolute;
      height: 500px;
      width: 549px;
      border-radius: 10px;
      right: 35px;
    }
  
    @keyframes translateToLeft {
      0% {
        transform: translateX(0px);
      }
      100% {
        transform: translateX(-490px);
        display: none;
      }
    }
  
    .fakeSigninDiv {
      position: absolute;
      height: 500px;
      width: 549px;
      border-radius: 10px;
      left: 38px;
    }
  
    .toRight {
      position: absolute;
      height: 500px;
      width: 549px;
      border-radius: 10px;
      left: 38px;
      background-color: #fff;
      animation: translateToRight 1s 1;
      z-index: 999;
    }
  }
  

  
  #country-picker {
    width: 200px;
  }
  
  .country-option {
    padding-left: 25px;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 20px;
  }
  .country-list{
    width: 300px !important;
  }
  .intl-tel-input{
    width: 100%;
  }
  
  .hide {
    display: none;
}