/* login form CSS starts */
*,
*:before,
*:after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
  background-image: url('../Images/backgroundlogin.png');
  background-repeat: no-repeat;
  background-attachment: fixed;  
  background-size: cover;
}
.background{
    width: 430px;
    height: 520px;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
   
}
form{
    height: 460px;
    width: 450px;
    background-color: white;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(8,7,16,0.6);
    padding: 50px 35px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    
}
form *{
    font-family: 'Poppins',sans-serif;
    color: black;
    letter-spacing: 0.5px;
    outline: none;
    border: none;
}
form h4{
    font-size: 20px;
    font-weight: 300;
    line-height: 42px;
    text-align: center;
    color: #666;
}

label {
  color: #666;
  font-size: 15px;
  font-weight: 100;
}
input{
    display: block;
    height: 50px;
    width: 100%;
    background-color: rgba(88, 85, 85, 0.07);
    border-radius: 3px;
    padding: 0 10px;
    margin-top: 35px;
    font-size: 14px;
    font-weight: 300;
    box-sizing: border-box;
    
}
select{
     display: block;
    height: 50px;
    width: 100%;
    background-color: rgba(88, 85, 85, 0.07);
    border-radius: 3px;
    padding: 0 10px;
    margin-top: 35px;
    font-size: 14px;
    font-weight: 300;
    box-sizing: border-box;
}
::placeholder{
    color: #e5e5e5;
}
#button{
    margin-top: 50px;
    width: 20%;
    background-color: #2e6916;
    color: #ffffff;
    padding: 10px 0px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 5px;
    cursor: pointer;
    float: right;
}
input[type="checkbox"] {
  -webkit-appearance: checkbox;
     -moz-appearance: checkbox;
          appearance: checkbox;
  display: inline-block;
  width: auto;
}
/* login form css ends */
