@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;800&display=swap');
/* Miss Divya Import Fonts in CSS File Rather than in Head Tag, It Will Reduce Requests */


body {
    background-image: url("MissDivya.jpg");
    /* Miss Divya- Use High Quality and Images that Suits Well */
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    
   
  }


.eml {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 40%;
background: white;
padding: 30px;
box-shadow: 20px 19px 17px -16px rgba(255, 255, 255, 0.76);
}

 
.checkbox {
  padding-left: 20px;
}



.newh {
  color: rgb(50, 130, 205);
  font-weight: 800;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  margin-bottom:3vh;
}

.label,.login,.forget{
    color: rgb(0, 0, 0);
    margin-top: 20px;
   /*  Miss Divya Use Multiple Class Selector Instead of Selecting Individual Components */
}

.credits{
    text-align: right;
    font-style: italic;
}

@media only screen and (max-width: 900px) {
    .eml {
      width: 300px;
    }
  }

 