@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html,
body {
    margin: 0;
    background: #222;
    color: #eee;
    font-family: 'Montserrat', 'Verdana';
    height: 100%;

    &.fullWindow {
        overflow: hidden;
    }
}

* {
    outline: none;
    transition: .2s
}


body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    form {
        display: flex;
        flex-direction: column;

        label {
            margin: 6px;
        }

        input {
            border: 2px solid #fff;
            border-radius: 6px;
            padding: 12px 12px;
            background: #45f;
            margin-bottom: 3px;
            font-family: inherit;
            text-align: center;
            font-weight: 700;
            font-size: 16px;
            color: #fff;
        }

        button {
            background: #fff;
            color: #45f;
            font-weight: 700;
            border: 2px solid #45f;
            border-radius: 6px;
            padding: 12px;
            margin-top: 12px;
            font-family: inherit;
            font-size: 18px;
        }
    }
}