body {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
}

.hr-text {
    line-height: 1em;
    position: relative;
    outline: 0;
    border: 0;
    color: black;
    text-align: center;
    height: 1.5em;
    opacity: 0.5;
}

.hr-text:before {
    content: "";
    background: linear-gradient(to right, transparent, #818078, transparent);
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
}

.hr-text:after {
    content: attr(data-content);
    position: relative;
    display: inline-block;
    color: black;
    padding: 0 0.5em;
    line-height: 1.5em;
    color: #818078;
    background-color: #fcfcfa;
}

.mt-up {
    margin-top: -18.4px;
}

.hint {
    color: #c5c4bc;
}

span.hint {
    color: #87867e;
}

.custom-input {
    font-size: 14px;
    color: #717068;
}

.form-control::placeholder {
    color: #b9b8b0;
}

.normal-text-black {
    color: #74828d;
}

#title {
    text-align: center;
    font-size: 1.8em;
}

#outerContainer {
    height: 100vh;
}

#mainContainer {
    height: calc(100vh - 20px);
    background-color: #fff;
    border-radius: 20px;
    /*overflow-y: auto;*/
}

#cover {
    background-color: #000;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    border-radius: 20px 0 0 20px;
}

#background {
    height: 100%;
}

#backgroundInner {
    padding-top: 10px;
}

#formContainerOuter {
    height: calc(100% - 20px);
}

#formContainerMain {
    overflow-y: auto;
}

@media only screen and (max-width: 1200px) {
    #title {
        font-size: 1.5em;
    }
}

@media only screen and (max-width: 992px) {
    #title {
        font-size: 1.4em;
    }
}

@media only screen and (max-width: 768px) {
    #mainContainer {
        height: 100%;
        overflow-y: auto;
    }

}

@media only screen and (max-width: 576px) {
    #cover {
        height: 50%;
        border-radius: 20px 20px 0 0;
    }

    #formContainerMain {
        overflow: initial;
    }

    #mainContainer {
        border-radius: 20px 20px 0 0;
    }
}

