body {
    margin: 20px;
    font-family: 'Open Sans', sans-serif;
    min-height: 100vh;
    display: flex;
}

.background {
    position: absolute;
    display: inline-block;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    transform: translate(-50%, 0);
    margin-left: 50%;
}

@media screen and (orientation: portrait) {
    .background img {
        height: 100vh;
    }
}

@media screen and (orientation: landscape) {
    .background img {
        width: 100vw;
    }
}

header {
    color: #fff;
    text-align: center;
    margin-top: 20vh;
}

button {
    margin: 20px 0;
    font-weight: bold
}

div.form-section {
    z-index: 10;
    display: inline-block;
    width: 100%;
}

.btn-icon {
    position: relative;
}

.btn-icon i {
    display: block;
    position: absolute;
    top: -1.5rem;
    left: 0;
    right: 0;
    font-size: 3rem;
}

.btn-icon i.fa:before,
.btn-icon i.fab:before {
    background: #fff;
}
.btn-icon:hover i {
}

.btn-icon:hover i.fa:before,
.btn-icon:hover i.fab:before {
    background: transparent;
    color: #d3d3d3;
}
#loading-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 500;
}

#loading-image {
    position: fixed;
    top: 50%;
    left: 50%;
    margin: -75px;
    z-index: 510;
    width: 70%;
    height: auto;
    max-width: 150px;
}

.warn {
    display: none;
}

.scribe-action.closed {
    cursor: not-allowed !important;
    background: #d9d9d9;
    color: rgb(128, 128, 128);
}
