*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html{
    font-size: 62.5%;
    font-family: Arial, Helvetica, sans-serif;
}

.login-container{
    background: radial-gradient(1200px 600px at 80% -10%, rgba(34,211,238,.15), transparent 60%),
                  radial-gradient(1000px 500px at 10% 0%, rgba(96,165,250,.14), transparent 60%),
                  #0b1220;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
   
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}
.login-form{
    width: 100%;
    max-width: 400px;
    background-color: #070C1E;
    display: flex;
    flex-direction: column;
    align-items: center;  
    border-radius: 10px;
    border: 1px solid rgba(92, 105, 129, 0.9);
    
}
#form{
    text-align: center;
    width: 100%;
    padding: 40px;
}
.log-title{
    color: white;
    padding: 20px;
    font-size: 3rem;
    font-weight: bold;
}
.log-img-user img{
    width: 100%;
    height: 50px;
}
#log-email, #log-password{
    width: 100%;
    padding: 22px;
    border: none;
    border-bottom: 4px solid #e50914;
    font-size:1.8rem;
    margin-bottom: 15px;
}
#log-button{
    width: 100%;
    padding: 12px;
    border: none;
    background-color: #e50914;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 2rem;
    font-weight: bold;
}