
body{
    background-color:var(--bg-2);
}
.login-container{
    display: flex;
    justify-content:center;
    align-items:center;
    height:100vh;
    width:100vw;
}
#login{
    background-color: var(--bg-1);
    border-top:10px solid #fce500;
    box-shadow: var(--shadow-1); 
    padding:30px;
    position: relative;
    max-width:380px;
}
#login::before{
    content:'';
    width:100%;
    display: block;
    background-position:center;
    background-repeat:no-repeat;
    background-size:contain;
    background-image:url(../images/michelin-logo.svg);
    height:calc(270.7/1383.6 * 420px);
    position: absolute;
    left:0;
    right:0;
    top:0;
    transform:translateY(calc(-100% + 1px));
}