@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700&display=swap');
* {
    font-family: 'Lato','Courier New', Courier, monospace;
}

.login-container {
    background: rgb(65,83,239);
    background: -moz-linear-gradient(189deg, rgba(65,83,239,1) 30%, rgba(64,84,240,1) 50%);
    background: -webkit-linear-gradient(189deg, rgba(65,83,239,1) 30%, rgba(64,84,240,1) 50%);
    background: linear-gradient(189deg, rgba(65,83,239,1) 30%, rgba(64,84,240,1) 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4153ef",endColorstr="#4054f0",GradientType=1);
}

.login-input {
    border-radius:12px;
}

.login-button {
    border-radius:12px;
    width:100%;
    background:#4153ef;
    color:white;
}