@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@100;200;300;400;500;600;700;800&display=swap');

html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #000 0%, var(--accent-color) 150%);
    font-family: 'Work Sans', sans-serif;
    font-size: 1.75vh;
    font-weight: 400;
}

.login {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 6vh 5% 7vh 5%;
    border-radius: .3vh;
    background: rgba(200, 200, 200, .15);
    box-shadow: 0 0 1vh rgba(0, 0, 0, .3);
}

.login img {
    margin-bottom: 3vh;
}