/*-- Web --*/
body{
    background-color: rgb(34, 34, 34);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   
}
h1{
    color: whitesmoke;
    font-size:3rem;
}
section{
    display:flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}

form{
    display: flex;
    flex-direction: column;
   
}
label{
    font-size: 1.5rem;
    color: whitesmoke;
}

input{
    margin-top : 2vh;
    background-color: transparent;
    color: black;
    border-radius: 4px;
    background-color: rgb(161, 160, 160);
}
#test{
    margin-top: 5%;
    font-size: 1.5rem;
    border-radius: 4px;
    background-color: rgb(161, 160, 160);
    color: black;
    cursor: pointer;
    font-weight: bold;
}
/*-- Mobile --*/
@media all and (orientation: portrait) {
    
    section{
        transform: translateY(-6vh);
    }
    h1{
        transform: translateY(2.8vh);
    }
    #test{       
        font-size:2.5rem;
        transform: translateY(25px);
    }
    label{
        font-size:2.5rem;
        transform: translateY(25px);
    }
    input{
        margin-top:1vh;
        margin-bottom:1vh;
        border: 1px solid white ;
        transform: translateY(25px);
        height : 2vh;
    }
}