body {
  background-image: linear-gradient(135deg, #FAB2FF 10%, #1904E5 100%);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: "Open Sans", sans-serif;
  color: #333333;
}

.box-form {
    margin: auto;
    width: 100%;
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex: 1 1 100%;
    align-items: stretch;
    justify-content: space-between;
    box-shadow: 20px 0 20px 6px #090b6f85;
  }
  
  .text-login {
    text-align: center;
  }
  
  @media (max-width: 1000px) {
    .text-login {
      font-size: 30px;
      text-align: center;
    }
  }
  
  @media (max-width: 800px) {
    .box-form {
      flex-flow: wrap;
      text-align: left;
      align-content: center;
      align-items: center;
    }
  
    .box-form .right {
      width: 100%;
    }
  
    .text-left {
      font-size: 25px;
    }
  }
  
  .box-form .Covers {
    position: relative;
  }
  
  .box-form div {
    height: auto;
  }
  
  .box-form .left .overlay {
    position: absolute;
    Top: 0;
    background: rgb(0, 0, 1);
    background: rgba(0, 0, 0, 0);
    /* Black see-through */
    width: 100%;
    transition: .5s ease;
    opacity: 1;
    color: red;
    padding: 20px;
  }
  
  .box-form .left .overlay btn {
    bottom: 0;
  }
  
  .box-form .left .overlay span a {
    background: #3b5998;
    color: #FFFFFF;
    margin-top: 10px;
    padding: 14px 50px;
    border-radius: 100px;
    display: inline-block;
    box-shadow: 0 3px 6px 1px #042d4657;
  }
  
  .box-form .left .overlay span a:last-child {
    background: #1dcaff;
    margin-left: 30px;
  }
  
  .box-form .right {
    padding: 20px;
    overflow: hidden;
  }
  
  .box-form .right h5 {
    font-size: 6vmax;
    line-height: 0;
  }
  
  .box-form .right p {
    font-size: 14px;
    color: #B0B3B9;
  }
  
  .box-form .right .inputs {
    overflow: hidden;
  }
  
  .box-form .right input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 2px solid blue;
    border-radius: 5px;
  }
  
  .box-form .right .remember-me--forget-password {
    display: flex;
    justify-content: space-between;
    align-items: left;
  }
  
  .box-form .right button {
    float: right;
    color: #fff;
    font-size: 16px;
    padding: 12px 35px;
    border-radius: 50px;
    display: inline-block;
    border: 0;
    outline: 0;
    box-shadow: 0px 4px 20px 0px #49c628a6;
    background-image: linear-gradient(135deg, #70F570 10%, #49C628 100%);
  }
  
  
  .chkbox {
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
  
  .chkbtn {
    background-color: #d2d2d2;
    width: 34px;
    height: 20px;
    border-radius: 16px;
    cursor: pointer;
    position: relative;
    transition: 0.2s;
  }
  
  .chkbtn::before {
    position: absolute;
    content: '';
    background-color: #fff;
    width: 16px;
    height: 16px;
    border-radius: 16px;
    margin: 2px;
    transition: 0.2s;
  }
  
  #check:checked+.chkbtn {
    background-color: #20096d;
  }
  
  #check:checked+.chkbtn::before {
    transform: translateX(14px);
  }
  
  #check {
    display: none;
  }