:root {
    font-size: 17px;
}
body {
    margin: 0;
    height: 100vh;
    display: grid;
    grid-template-rows: 20vh 1fr;
    grid-template-columns: 1fr;
    background-image: url(/AUTH/v1/resources/bg.svg?1);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    & > header {
        justify-self: center;
        align-content: center;
        color: black;
        & > h1 {
            margin-block: 0;
        }
    }
    & > main {
        justify-self: center;
        font-size: 1.5rem;
        /* backdrop-filter: blur(5px); */
        padding-block: 50px;
        & > #f_login {
            width: 50vmin;
            color: white;
            background-color: rgb(0 0 0 / 0.5);
            border-radius: 50px;
            padding: 2em;
            & > dl {
                display: flex;
                flex-direction: column;
                row-gap: 20px;
                & > div {
                    display: grid;
                    grid-template-columns: 120px 1fr;
                    & > dd {
                        margin-inline-start: 0;
                        display: flex;
                        & > input {
                            flex-grow: 1;
                            padding-inline: 1em;
                            font-size: 1.3rem;
                            outline: none;
                            border: none;
                        }
                    }
                }
            }
            & > p {
                text-align: end;
                & > button {
                    font-size: 1.5rem;
                    padding: 0.5em 1em;
                    cursor: pointer;
                    &:is(.progressing) {
                        background-image: var(--inactive_bg);
                        background-size: 500%;
                        animation: var(--progressing);
                    }
                }
            }
        }
    }
}