*
{
    margin: 0;
    padding: 0;
    font-family: 'Poppins',sans-serif;
    box-sizing: border-box;
}

body
{
    background-color: black;
    color: white;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url("images/the_netflix_login_background__canada__2024___by_logofeveryt_dh0w8qv-fullview.jpg");
    background-size: cover;
    background-position: center;
    padding: 10px 8%;
    position: relative; 
}
.header
{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    
    
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}
.logo{
    width: 150px;
    cursor: pointer;
}

.log-in
{
    width: 350px;
    height: 400px;
    border: 1px;
    margin-top: 50px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  background: rgba(0, 0, 0, 0.45); /* lighter glass */
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.26);
}
#email_or_number
{
    width: 270px;
    padding: 10px;
    height: 55px;
    box-sizing: border-box;
    border-radius: 5px;
    background-color: #333333;
    outline: none;
    border: 0px;

}
#pass
{
    width: 270px;
    padding: 10px;
    height: 55px;
    box-sizing: border-box;
    border-radius: 5px;
    background-color: #333333;
    outline: none;
    border: 0px;
}
#btn
{
    padding: 12px;
    border-radius: 5px;
    color: white;
    background-color: red;
    font-weight: 300;
    border: 0px;
}
input[type="checkbox"] {
  accent-color: grey;
}  
