body {
    background-image: linear-gradient(135deg, #4bbb97 10%, #1904E5 100%);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #333333;
  }
  
  .box-form {
    margin: 0 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: 0 0 20px 6px #090b6f85;
    min-height: 600px;

  }
  @media (max-width: 980px) {
    .box-form {
      min-height: 600px;
      flex-flow: wrap;
      text-align: center;
      align-content: center;
      align-items: center;
    }
  }
  .box-form div {
    height: auto;
  }
  .box-form .left {
    color: #FFFFFF;
    background-size:cover;
    background-repeat: no-repeat;
    background-image: url("/img/bg.jpg");
    overflow: hidden;
  }
  .box-form .left .overlay {
    padding: 30px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }
  .box-form .left .overlay h2 {
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
    margin-top: 70px;
    margin-bottom: 20px;
    color:black
  }

  .box-form .left .overlay span a {
    background: #3b5998;
    color: #FFFFFF;
    font-size: 20px;
    margin-top: 200px !important;
    padding: 7px 12px;
    border-radius: 50%;
    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;
  }
  @media (max-width: 980px) {
    .box-form .right {
      width: 100%;
    }
  }

  .login-text{
    font-size: 25px !important;
    font-weight: bold;
    color: #3b5998 !important;
    text-shadow: 1px 1px  #333333;
    padding-top:50px;
  }
  .box-form .right .inputs {
    overflow: hidden;
  }
  .box-form .right input {
    width: 100%;
    padding: 15px;
    margin-bottom: 25px;
    font-size: 16px;
    border: none;
    outline: none;
    border-radius: 15px;
    border-bottom: 2px solid #c8cfdb;
  }

  .box-form .right button {
    color: #fff;
    font-size: 18px;
    padding: 7px 40px;
    border-radius: 50px;
    display: inline-block;
    border: 0;
    outline: 0;
    box-shadow: 0px 4px 20px 0px rgb(27, 180, 111);
    background-image: linear-gradient(135deg, #2758c9 10%, #1d3cec 100%);
  }
  .box-form .right button:hover {
    box-shadow: 2px 5px 20px 2px rgb(14, 141, 48);
    background-image: linear-gradient(135deg, #1e3f8c 10%, #0f1f7c 100%);
  }
  
  label {
    display: block;
    position: relative;
    margin-left: 30px;
  }
  