html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #f9f7f4;
}

.auth {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%
}

    .auth .auth-block {
        width: 340px;
        box-shadow: 0 20px 60px rgba(38,21,18,.1);
        border-radius: 10px;
        background-color: #fff;
        padding: 30px 40px
    }

        .auth .auth-block .caption {
            text-align: center;
            font-size: 12px;
            color: #301713;
            font-weight: 700
        }

        .auth .auth-block form {
            margin-top: 20px
        }

            .auth .auth-block form input {
                width: calc(100% - 40px)
            }

            .auth .auth-block form .submit-group {
                text-align: center
            }

                .auth .auth-block form .submit-group .btn {
                    padding: 0 25px;
                }

            .auth .auth-block form .error-block {
                margin-top: 20px;
                height: 50px;
                background-color: #fae7e3;
                border-radius: 10px;
                text-align: center;
                color: #301713;
                font-size: 10px;
                font-weight: 700;
                display: flex;
                justify-content: center;
                align-items: center
            }




#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1200;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
