html,
body {
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: none!important;
}

body.loginBody {
    background-image: linear-gradient(115deg, rgba(255,241,124,1) 2%, rgba(88,67,0,0.8) 20%, rgba(21,35,66,0.9) 35%, rgba(21,31,56,0.9) 54%, rgba(88,67,0,0.85) 92%, rgba(241,212,64,1) 100%);
    background-repeat: no-repeat;
    flex-grow: 1;
    flex-direction: column;
}
.loginFormWrapper {
    background: url("../images/bg-modal-reg.svg") no-repeat;
    background-size: 100% 100%;
    padding: 34px;
}
.loginForm {
    background-color: #dec463;
    border-radius: 20px;
    padding: 10px 40px 20px;
}
.loginTabTitle {
    color: #1e1f29;
    font-size: 42px;
    text-align: center;
    line-height: 1;
    margin: 15px 0px 5px 0px;
    font-family: "SpectralSC", serif;
}
.lineLg {
    height: 3px;
    background-color: #000000;
    border-radius: 2px;
    width: 360px;
}
.lineSm {
    height: 2px;
    background-color: #000000;
    border-radius: 2px;
    width: 74%;
}
.loginFormWrapper button[disabled] span{
    background-color: #444552;
    color: #fbedb9;
}
/*.gradientBorder {
    border-radius: 1em;
    border: solid 5px transparent;
    background-clip: padding-box;
    box-sizing: border-box;
    position: relative;
}
.gradientBorder:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -5px;
    background: linear-gradient(to right, #584300 0%, #584300 8.2%, #f0cb05 25%, #f0d773 55.1%, #eae1ea 70.58%, #f1d440 90.93%, #f1d440 100%);
    border-radius: inherit;
}*/
.loginFormInputWrap {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
    flex-direction: column;
    align-items: center;
}
.inputBorderGradient {
    background: linear-gradient(to right, #584300 0%, #584300 8.2%, #f0cb05 25%, #f0d773 55.1%, #eae1ea 70.58%, #f1d440 90.93%, #f1d440 100%);
    padding: 2px;
    border-radius: .6em;
}
.inputBorderGradient > input {
    display: inline-block;
    box-sizing: border-box;
    width: 100%;
    border-radius: 8px;
    height: 1.7em;
    border: none;
    padding-left: 15px;
    font-size: 1.6em;
    outline: none;
}
.checkboxWrap {
    width: 74%;
    display: block;
    position: relative;
    padding-left: 34px;
    cursor: pointer;
    font-size: 12px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    box-sizing: border-box;
    text-align: justify;
}
.checkboxWrap input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    left: 0;
    top: 4px;
    height: 25px;
    width: 25px;
    background: linear-gradient(to right, #584300 0%, #584300 8.2%, #f0cb05 25%, #f0d773 55.1%, #eae1ea 70.58%, #f1d440 90.93%, #f1d440 100%);
}
.checkmark:before {
    background-color: #fff;
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    bottom: 2px;
    left: 2px;
    z-index: 0;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.checkboxWrap input:checked ~ .checkmark:after {
    display: block;
}
.checkboxWrap .checkmark:after {
    left: 10px;
    top: 6px;
    width: 5px;
    height: 10px;
    border: solid black;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.loginBtnText {
    background-color: #1e1f29;
    text-transform: uppercase;
    color: #dec463;
    padding: 0px 20px;
    font-size: 26px;
    text-align: center;
    border: 3px solid transparent;
    border-radius: 8px;
}
.loginBtn {
    padding: 3px;
    background: linear-gradient(to right, #584300 0%, #584300 8.2%, #f0cb05 25%, #f0d773 55.1%, #eae1ea 70.58%, #f1d440 90.93%, #f1d440 100%);
    border: none;
    border-radius: 10px;
}
.loginBtn:focus {
    outline: 0;
}
.changeTab {
    color: #1e1f29;
}

@media only screen and (max-width: 414px) {
    .lineLg {
        width: 320px;
    }
    .loginFormWrapper {
        padding: 16px;
    }
    .loginForm {
        padding: 10px;
    }
}