@font-face {
  font-family: "Poppins";
  src: url('assests/Poppins-Light.ttf');
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  height: 100vh;
  width: auto;
  display: grid;
  place-items: center;
  background: url(assests/pexels-james-wheeler-417074.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;  
  background-size: cover;
  font-family: 'Poppins';
  color: white;
  overflow: hidden;
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  height: 550px;
  width:auto;
  padding: 5%;
  background: rgba( 255, 255, 255, 0.1 );
  box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.35);
  backdrop-filter: blur( 5px );
 -webkit-backdrop-filter: blur( 5px );
  border-radius: 10px;
  border: 1px solid rgba( 255, 255, 255, 0.18 );
}
form{
font-size: 1.35rem;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
#Login , #Password{
  margin: 10px;
  display: flex;
  flex-direction: column;
}
::placeholder{
 color: rgba(255, 255, 255, 0.5);
}
#Login label, #Password label{
  margin-left: 10px;
  color: rgb(255, 255, 255);
}
.error, .error_p{

  margin-left: 10px;
  font-size: 0.9rem;
  color: rgb(255, 255, 255,0.6);
}
.container img{
  height: 100px;
  width: 100px;
  border-radius: 50%;
}
#Submit{
margin: 10px;
width: 225px;
padding: 15px;
border-radius: 25px;
font-family: 'Poppins';
background: rgb(255, 255, 255,0.0);
color: aliceblue;
border: 0.002rem solid aliceblue;
transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#Submit:hover{
  background: aliceblue;
  color: black;
}
#Submit:active{
  position: relative;
  top: 2px;
  color: black;
  background: aliceblue;
}
#email , #password{
  margin: 10px;
  width: 250px;
  padding: 12px;
  background: rgb(255, 255, 255,0.3);
  color: aliceblue;
  font-family: 'Poppins';
  font-size: 1rem;
  border: 0.002rem solid white;
}
form #email:active{
 
  box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.35);
}
.logwith{
  height: 50px;
  width: 150px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.logwith i{
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.logwith i:hover{
  color: rgba(0, 0, 0, 0.44);
}
#error_l , #error_p{
  display: none;
  font-size: 0.90rem;
  color: rgb(211, 0, 0);
}
@media only screen and (max-width:700px) {
  body {
    background-image: url('assests/pexels-james-wheeler-417074.jpg');
    background-position: center bottom;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
  }
  
}

