:root {
    --dark: #0f0f14;
    --orange-red: #ff1b1b;
    --aqua-marine: #3bd4c2;
    --lightish-blue: #3366ff;
    --maize: #ffc54d;
    --pale-grey: #f1f4ff;
    --melon: #fe8060;
    --lightblue: #6bcdfd;
    --cloudy-blue: #b7bacf;
    --light-peach: #ffc3b7;
    --pale-grey: #f7f9ff;
}

html,
body {
    height: 100%;
    background-color:#eff6f9;
    font-family: 'Rubik', sans-serif;
      background-image: url(../images/login_b.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: #ffffff;
}
.site-login{
    padding:15px;
}

.sign-in-box{
    color: #999;
    padding: 20px;
    border-radius: 10px;
}
.control-label {
    width: 260px;
    height: 20px;
    font-family: Rubik;
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: 0.4px;
    color: var(--cloudy-blue);
}
.form-control {
    height: 30px;
    padding: 20px;
    font-family: Rubik;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: 0.2px;
    color: var(--dark);
    margin-bottom: 35px;
    border: none;
    border-radius: 5px;
    border: 1px solid #b8b8b8;
    background: #ffffff;
    box-shadow: none !important;
}
.form-control:focus,.form-control:active{
    border: 2px solid #af5eff;
    -webkit-box-shadow: unset;
    box-shadow:  unset;
}
input[type="checkbox"]{
    width: 16px;
    height: 16px;
    border-radius: 6px;
    border: solid 1px rgba(15, 15, 20, 0.15);
    background-color: rgba(255, 255, 255, 0.8);
}
.remember-block label{
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000000;
    padding-left: 10px;
}
.forgot-password-link{
    margin-top :30px;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: var(--dark);
    line-height:45px;
    text-align:left;
}
.forgot-password-link a{
    color: #945bef;
}
.btn-login{
    width: 100%;
    font-family: Rubik;
    font-size: 15px;
    background: #8a5be8;
    font-style: normal;
    font-stretch: normal;
    line-height: 22px;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;
    height: 50px;
    border-radius: 3px;
    border: none;
    transition: all .5s;
}
.btn-login:hover,.btn-login:active,.btn-login:focus{
    color: #ffffff;
    background: #9c6ef8;
}

.logo-col{
    padding-right:0px;
}
.login-logo{
    max-width: 170px;
    height: 230px;
    background-image: url(../images/logo_notag.png);
    background-size: 100%;
    background-repeat: no-repeat;
    margin: 0 0;
    width: 100%;
    margin: 0 auto;
    background-position: center;
}
.login-button-row{
    margin-top:32px;
    margin-bottom:16px;
}
#login-form{
    margin-top:30px;
}
.margin-top-100{
    margin-top: 100px;
}
.spacer-10{
    height:10px;
}
.spacer-15{
    height:15px;
}
.spacer-20{
    height:20px;
}
.spacer-30{
    height:30px;
}
.spacer-40{
    height:40px;
}
.spacer-60{
    height:60px;
}
.spacer-100{
    height:100px; 
}
.field-icon {
    float: right;
    margin-top: -48px;
    position: relative;
    z-index: 2;
    right: 10px;
    cursor:pointer;
}
.wrap {
    min-height: 100%;
    height: auto;
    margin: 0 auto -60px;
    padding: 0 0 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrap > .container {
    padding: 70px 15px 20px;
}


.checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.error-summary{
    background-color: #ffbaba;
    padding: 15px 5px;
    color: #3c3e45;
    margin-bottom: 15px;
}
.error-summary p{
    display:none;
}
.error-summary ul{
    list-style:none;margin-bottom: 0px;
    padding-inline-start: 15px;
}

.error-summary ul li:before {
    font-family: FontAwesome;
    content: "\f05e     ";
}
.reset-success{
    width: 290px;
    border-radius: 6px;
    border: 2px solid #ffd3cb;
    display: inline-flex;
    padding: 20px;
}

.mail-sent{
    background-image: url(ub-icons/image/mail-sent.png);
    background-repeat: no-repeat;
    margin: 3px auto;
    width: 130px !important;
    height: 24px !important;
}

/* Hide the browser's default checkbox */
.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 6px;
    border: solid 1px rgba(15, 15, 20, 0.15);
    background-color: rgba(255, 255, 255, 0.8);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox input:checked ~ .checkmark:after {
    display: block;
}

.checkbox input:checked ~ .checkmark{
    border: solid 1px var(--melon);
}

/* Style the checkmark/indicator */
.checkbox .checkmark:after {
    left: 5px;
    top: 2px;
    width: 5px;
    height: 8px;
    border: solid var(--melon);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: rgba(255, 255, 255, 0.8);
}
.citate{
    background-image: url(../images/login-citate.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    text-align: center;
    min-height: calc(100vh - 40px );
}
.citate img{ 
    visibility: hidden;
    max-height:calc(100vh - 40px );
}
.citate-text{
    width: 35%;
    height: 230px;
    display: inline-block;
    padding: 5px;
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: calc(10px + (16 - 10) * ((100vw - 300px) / (1900 - 300)));
    line-height: calc(1.7em + (1.7 - 1) * ((100vw - 300px)/(1900 - 300)));
    overflow: hidden;
    opacity:0;
    transition: visibility 0s, opacity 1s linear;
}
.citate-svg{
    width:85%;
}
footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: #8e8e8e;
    /* background: #ffffff33; */
    font-family: Rubik;
    font-size: 13px;
    font-weight: 400;
    height: 60px;
    padding: 13px 0;
}
footer a{
    color: #8e8e8e;
}
.list-horizontal {
    margin-bottom: 0px;
}
.list-horizontal li {
    position: relative;
    display: inline-block;
    margin: 5px 5px;

}
.container-fluid {
    width: 100%;
    max-width: 1600px;
}
.wrap.login{
    /*display:none;*/
}

.round-btn{
    width: 50px;
    border-radius: 50%;
    font-size: 25px;
}
.round-btn:focus,.round-btn:hover, .round-btn:active, .round-btn:focus{
    box-shadow:unset !important;
        outline: unset !important;
}
@media (min-width:1500px) {
  .citate-text {
        top: 55%;
    }
}
@media (max-width:1200px) {
  .citate-text {
        width: 35%;
        height: 115px;
        top: 30%;
        left: 50%;
        transform: translate(-50%, 5%);
    }
}

@media screen and (max-width: 767px) {
    .site-login{
        background-image: url(../images/login-plane-mobile.png);
        background-position: right 75px;
    }
    
    
}
#login-form .input-group-addon{
    background: #ffffff;
    border-right: 0px solid #ddd;
}
#login-form .form-control{
    background:#fff;border-left: 0px;
}
.login-form-element{
    margin-bottom:25px;
}
.forgot-password{
    font-weight:bold;
    text-align: center;
}
 #login-form .input-icons i { 
        position: absolute;
        left: 0;
        } 
          
        #login-form  .input-icons { 
            width: 100%; 
            position:relative;
            margin-bottom: 25px;
        } 
          
        #login-form  .icon { 
                padding: 13px;  
                min-width: 50px;
                text-align: left;
                font-size: 17px;
        } 
          
        #login-form .input-field { 
               width: 100%;
                padding: 10px;
                text-align: left;
                padding-left: 50px;
                border-color: #ddd0;
                border: 1px solid #d7d7d7;
        } 
        #login-form .input-field:focus,#login-form .input-field:active{
            border: 2px solid #af5eff;
            border-color: #af5eff;
            -webkit-box-shadow: unset;
            box-shadow:  unset;
        }
        .input-field:focus + .icon {
            color: #af5eff;
        }
        .flex{
            display: flex;
        }
        .flex-center{
            justify-content: center;
            align-items: center;
        }
       