@import url('/css/root.css');

* {
    font-family: 'Roboto Regular';
}

@font-face {
    font-family: 'Roboto Regular';
    src: local('Roboto'), local('Roboto-Regular'),
        url('/webfonts/roboto-regular.woff') format('woff'),
        url('/webfonts/roboto-regular.woff2') format('woff2');
}

body {
    height: 100vh;
    margin: 0;
    background-color: var(--surface);
}

span, li {
    font-size: 16px;
    line-height: 1.5;
}

#main {
    display: flex;
    justify-content: center;
}

.auth-form {
    width: 100%;
    max-width: 25.5rem;
    padding: 6rem 1rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.auth-form h1 {
    color: var(--on-surface);
}

.auth-form ol {
    list-style: none;
    counter-reset: item;
    padding: 0 1.75rem;
}

.auth-form ol li {
    counter-increment: item;
    text-align: left;
    margin: .75rem 0;
    display: flex;
}

.auth-form ol li span {
    color: var(--on-surface);
}

.auth-form ol li::before {
    content: counter(item);
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 1.375rem;
    height: 1.375rem;
    padding: 0;
    margin: 0 .75rem 0 0;
    background: var(--primary);
    border-radius: 50%;
    font-size: smaller;
    color: var(--on-primary);
    margin-top: 1px;
}

.qr-outer {
    width: 360px;
    height: 280px;
}  

.qr-image {
    width: 280px;
    height: 280px;
}