body{
  height:100vh;
  justify-content:center;
  align-items:center;
  background:url('https://images.unsplash.com/photo-1550236520-7050f3582da0?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1575&q=80');
  background-size:cover;
  background-position:center;
  font-family: 'Raleway', sans-serif;
}

.window{
  width:400px;
  height:380px;
  padding:40px;
  text-align:center;
  border:1px solid white;
  border-radius:20px;
  
  backdrop-filter:blur(20px) brightness(200%);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  color:white;
}

input[type="email"], input[type="password"]{
  border-radius:8px;
  border:1px solid white;
  color:white !important;
  background:transparent;
}
form{
  width:100%;
}
input[type="email"]:focus, input[type="password"]:focus{
  background:#00000040;
  box-shadow:none;

  border:1px solid white;
}
input[type="email"]::placeholder, input[type="password"]::placeholder{
  color:white;
}
input[type="submit"]{
  width:100%;
  border-radius:8px;
  text-transform:uppercase;
  font-weight:bold;
  font-size:14px;
}