* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  }
  
  div a {
    text-decoration: none;
  }
  
  .login-container {
    width: 100%;
    height: 90vh;
    /* background: rgb(5 59 127); */
    background: rgb(232 232 232);
    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(255, 255, 255, 0.2); */
    background: rgb(5 59 128);
    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;
  }
  
  .toLeft {
    position: absolute;
    height: 500px;
    width: 549px;
    border-radius: 10px;
    right: 35px;
    animation: translateToLeft 1s 1;
    background-color: #fff;
    z-index: 999;
  }
  
  @keyframes translateToLeft {
    0% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(-490px);
      display: none;
    }
  }
  
  
  .toRight {
    position: absolute;
    height: 600px;
    width: 549px;
    border-radius: 10px;
    left: 38px;
    background-color: #fff;
    animation: translateToRight 1s 1;
    z-index: 999;
  }
  
  @keyframes translateToRight {
    0% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(488px);
    }
  }
  
  .loginBoxVisibility {
    display: none;
    height: 100%;
    width: 549px;
    z-index: 3;
  }
  
  .loginBox {
    height: 100%;
    width: 549px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  
  .signupBoxVisibility {
    display: block;
    height: 100%;
    width: 549px;
    z-index: 3;
  }
  
  .signupBox {
    height: 100%;
    width: 549px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .roBtn {
    border-radius: 5px;
    border: 0;
    outline: none;
    background: rgb(105, 135, 152);
    cursor: pointer;
    transition: background 2s ease;
    color: #fff;
  }
  
  .roBtn:hover {
    background: rgb(215, 160, 79);
    transform: scale(1.1);
  }
  
  .btnBox {
    padding: 20px 0;
  }

  form {
    width: 100%;
    /* text-align: center; */
  }
  
  /*login form*/
  
  .loginForm {
    height: 500px;
    width: 549px;
    display: block;
    background-color: #fff;
    border-radius: 10px;
    position: relative;
    left: 23px;
  }
  
  .guestForm {
    height: 500px;
    width: 549px;
    display: none;
    background-color: #fff;
    border-radius: 10px;
    position: relative;
    left: 23px;
  }
  
  .forgotForm {
    height: 500px;
    width: 549px;
    display: none;
    background-color: #fff;
    border-radius: 10px;
    position: relative;
    left: 23px;
  }
  
  #forgot-btn {
    margin: 5px 80px 0px 0px;
    float: right;
  }
  
  .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;
  }
  
  .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: 5px;
    border: 1px solid #fff;
    box-shadow: 5px 7px 12px 7px #ece8e8;
    width: 100%;
  }
  
  .mainBtn {
    border-radius: 5px;
    border: 0;
    outline: none;
    width: 80px;
    height: 38px;
    /* background: rgb(110, 97, 166); */
    background: rgb(5 59 128);
    cursor: pointer;
    transition: background 2s ease;
    color: #fff;
  }
  
  .roBtn:hover {
    background: rgb(151, 79, 215);
    transform: scale(1.1);
  }
  
  /*signup form*/
  
  .signupForm {
    height: auto;
    width: 549px;
    display: none;
    background-color: #fff;
    border-radius: 10px;
    position: relative;
    right: 22px;
  }
  
  .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;
  }
  
  .in {
    text-align: center;
    width: 100%;
    animation: runningInMainSignup 1s 1;
  }
  @keyframes runningInMainSignup {
    0% {
      transform: translateX(100px);
      opacity: 0;
    }
  
    20% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
  
    60% {
      opacity: 1;
    }
  
    70% {
      opacity: 1;
    }
  
    80% {
      opacity: 1;
    }
    100% {
      transform: translateX(0px);
      opacity: 1;
    }
  }
  
  .out {
    text-align: center;
    width: 100%;
    animation: runningOutMainSignup 1s 1;
  }
  
  @keyframes runningOutMainSignup {
    0% {
      transform: translateX(0px);
      opacity: 1;
    }
    18% {
      opacity: 0;
    }
    20% {
      opacity: 0;
    }
    50% {
      opacity: 0;
    }
  
    60% {
      opacity: 0;
    }
  
    70% {
      opacity: 0;
    }
  
    80% {
      opacity: 0;
    }
    100% {
      transform: translateX(400px);
      opacity: 0;
    }
  }
  .signupTitle {
    font-size: 25px;
    margin-top: 20px;
  }
  
  .signupFormInput {
    width: 100%;
    padding: 10px 0;
    text-align: center;
  }
  
  .input, select{
    padding: 15px 80px;
  }
  
  input, select {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #fff;
    box-shadow: 5px 7px 12px 7px #ece8e8;
    width: 100%;
  }
  
  .mainBtn {
    border-radius: 5px;
    border: 0;
    outline: none;
    width: 80px;
    height: 38px;
    /* background: rgb(110, 97, 166); */
    background: rgb(5 59 128);
    cursor: pointer;
    transition: background 2s ease;
    color: #fff;
  }
  
  .roBtn: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:auto;
      padding: 20px;
    }
    .loginBoxVisibility {
      display: none;
      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: block;
      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: block;
      background-color: #fff;
      border-radius: 10px;
      position: relative;
      left: 0px;
      padding: 0;
    }
  
    .guestForm {
      width: 100%;
      height: 450px;
      display: none;
      background-color: #fff;
      border-radius: 10px;
      position: relative;
      left: 0px;
      padding: 0;
    }
  
    .forgotForm {
      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;
    }
    #forgot-btn {
      margin-right: 20px;
    }
  
    .input {
      padding: 15px 20px;
    }
  
    .signupForm {
      width: 100%;
      height: auto;
      display: none;
      background-color: #fff;
      border-radius: 10px;
      position: relative;
      right: 0;
      padding: 0;
      margin-top: 10rem;
    }
  
    .mainSignupBox {
      width: 100%;
      height: auto;
      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;
    }
  
    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;
    }
  
    @keyframes translateToLeft {
      0% {
        transform: translateX(0px);
      }
      100% {
        transform: translateX(-490px);
        display: none;
      }
    }
  
    .toRight {
      position: absolute;
      height: 500px;
      width: 549px;
      border-radius: 10px;
      left: 38px;
      background-color: #fff;
      animation: translateToRight 1s 1;
      z-index: 999;
    }
  }

  .btn-primary {
    background-color: #053b80!important;
    border-color: #053b80!important;
  }

  @media screen and (max-width: 560px) {

    .signupForm {
      width: 100%;
      height: auto;
      display: none;
      background-color: #fff;
      border-radius: 10px;
      position: relative;
      right: 0;
      padding: 0;
      margin-top: 17rem;
    }
  }
#passdes > li {
  list-style-type: none;
}

#passdes > li> small {
  color: red;
}
/* The alert message box in login box */
.red-alert {
  padding: 20px;
  background-color: #f8d7da; /* Red */
  color: #842029;
  border-radius: 0.375rem;
  margin: 10px 20px;
}

