body{
    background-image: url(../images/finalRackets.png);
    background-attachment: fixed;
    background-position: center;
    font-family: 'Poppins';
  }
  .divider{
    display:flex;
    justify-content: center;
  }
  .left{
    width:75vh;
  }
  .left img{
    margin: 10vh auto;
    width:75vh;
  }
  .right{
    width: 40%;
  }
  .container{
  max-width: 70vh;
  padding: 0 20px;
  margin: 27vh auto;
}
.wrapper{
  width: 100%;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 4px 10px 1px rgba(0,0,0,0.1);
}
.wrapper .title{
  height: 10vh;
  background: #333533;
  border-radius: 5px 5px 0 0;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper form{
  padding: 30px 25px 25px 25px;
}
.wrapper form .row{
  height: 6vh;
  margin-bottom: 15px;
  position: relative;
}
.wrapper form .row input{
  height: 6vh;
  width: 100%;
  outline: none;
  padding-left: 60px;
  border-radius: 5px;
  border: 1px solid lightgrey;
  font-size: 16px;
  transition: all 0.3s ease;
}
form .row input:focus{
  border-color: #333533;
}
form .row input::placeholder{
  color: #999;
}
.wrapper form .row i{
  position: absolute;
  width: 47px;
  height: 100%;
  color: #fff;
  font-size: 18px;
  background: #333533;
  border: 1px solid #333533;
  border-radius: 5px 0 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper form .pass a:hover{
  text-decoration: underline;
}
.wrapper form .button input{
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding-left: 0px;
  background: #333533;
  border: 1px solid #333533;
  cursor: pointer;
}
form .button input:hover{
  background: #253237;
}
.copyright{
  display: flex;
  justify-content: center;
}
/* --------------------------------------------------------------------- */
        /* Media query for mobile screens */
        @media (max-width: 768px) {
          .divider{
            flex-direction: column;
          }
          .left{
            display: flex;
            justify-content: center;
            width: 100%;
          }
          .left img{
            margin: 0vh;
            width:40vh;
          }
          .container{
            max-width: 70vh;
            padding: 0px;
            margin: 0vh;
            margin-bottom:20px;
          }
          .right{
            display: flex;
            justify-content: center;
            width: 100%;
          }
          .wrapper{
            width: 100%;
            background: #fff;
            border-radius: 5px;
            box-shadow: 0px 4px 10px 1px rgba(0,0,0,0.1);
          }
          .copyright{
            text-align: center;
          }
          .copyright h6{
            padding: 0px 10px;
            font-size: 18px;
          }
          .wrapper .title{
              height: 8vh;
              background: #333533;
              border-radius: 5px 5px 0 0;
              color: #fff;
              font-size: 25px;
              font-weight: 600;
              display: flex;
              align-items: center;
              justify-content: center;
            }
        }