body {
background: url('https://images.unsplash.com/photo-1525547719571-a2d4ac8945e2?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=464&q=80');
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 100vh;
width: 100vw;
display: flex;
align-items: center;
justify-content: center;
margin-top: 50px;
overflow: hidden;
}
.container  {
border-radius: 10px;
height: 500px;
width: 300px;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
align-items: center;
}

.card {
background: rgba(255,255,255,0.5);
border-radius: 20px;
}

#form {
height: 500px;
width: 400px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}

#logo {
color: red;
text-shadow: 0 0 10px pink, 0 0 20px orange, 0 0 30px blue;
font-size: 48px;
}




label {
    font-size: 20px;
}
  
  #username {
    margin-top: 10px;
  }

  .username {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #passwordLabel {
    margin-bottom: 10px;
  }
  
  #password {
    margin-bottom: 10px;
  }

  .password {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  
  input {
    width: 200px;
    border-radius: 10px;
    text-align: center;
  }

  #submit-log-in {
    margin-bottom: 20px;
    background-color: rgba(0,0,0,0.8) ;
    border: 1px solid white ;
    color: white ;
    font-size: 18px;
    padding: 2px;
    transition: .2s all ease-in-out;

  }

  #submit-log-in:hover {
    background-color: rgba(255,255,255,0.8);
    border: 1px solid black ;
    color: black ;
    box-shadow: 0 0 10px #555;
  }
  
