@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400&display=swap');
/* Login  */
body{
    margin: 0;
    min-height: 100vh;
    background-color: #f0f0f0;
    font-family: 'Montserrat', sans-serif;
}
#menu{
    display: grid;
    justify-content: center;
    background: url(../../common/images/login.svg) no-repeat;
    background-size: cover;
}
.login{
    margin-top: 30%;
    padding: 15px;
    max-width: 300px;
    width: 100%;
    background-color: #ffffff46;
    box-shadow: 0 0 5px #808080;
    border-radius: 10px;
}
@media(min-width:786px){
    .login{
        margin-top: 40%;
    }
}
h1{
    font-family: 'Montserrat', sans-serif;
}
.brand{
    width: 80px;
    height: 80px;
    margin-top: -70px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 20px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 0 5px #5d5d5d;    
}
.brand img{
    width: 100%;
    height: 100%;
}
label{
    display: block;
}
input{
    background-color: transparent;
    border:none;
    width: calc(100% - 20px);
    padding: 10px;
    box-shadow: 0 0 3px #5d5d5d;
    border-radius: 10px;
    margin-bottom: 15px;
}
button{
    padding:10px 30px;
    font-size: 1.1rem;
    color: #fff;
    background:linear-gradient(-35deg, #4d8cb9, #00cbff);
    border: none;
    border-radius: 5px;
    font-weight: 200;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}
.help{
    font-weight: 200;
}