html {
    overflow-x: hidden;
}

body {
    background-image: url("/static/assets/fullscreenbg.jpeg");
    /*background-size: 100vw 100vh;*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

#authflowcontent {
    width: 100vw;
}

#authflowtitle {
    width: 100%;
}

#authflowtitle {
    text-align: center;
}

#authflowform {
    margin: 0 auto;
}

label {
    padding-right: 10px;
}

label, input, #authflowformlabelinputbundle, #label {
    width: 100%;
    text-align: center;
}

#authflowsubmit {
    text-align: center;
    border: 0px;
    border-radius: 20px;
}

#authflowsubmit:hover {
    box-shadow: 0px 2px 8px #398157;
}

.authflowformcontainer-mobile {
    width: 80vw !important;
    height: 75% !important;
}

#authflowformcontainer {
    background-color: white;
    width: 50vw;
    height: min-content;
    max-height: 75%;
    min-height: 33%;
    overflow-y: scroll;
    border-radius: 20px;
    padding: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#notification {
    display: inline-block;
    color: red;
    width: 100%;
    text-align: center;
}

#enrol-prompt {
    font-size: x-small;
    display: inline-block;
    width: 100%;
    text-align: center;
    color: #535353;
}

#enrol-prompt > a {
    text-decoration: underline;
    color: #535353;
}

form > * {
    width: calc(100% - 20px) !important;
}