.login-page {
    background: #2c3e50;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    text-align: center;
    color: #fff;
    padding: 3em;
}

.login-page .col-lg-4 {
    padding: 0;
}

.welcome-img {
    width: 100%;
    margin-top: 10%;
    height: auto;
}

.welcome-sep {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.38);
}

#login-form-holder {
    text-align: center;
    margin: 5% 20px 0;
    border: 1px solid #fff6;
    border-radius: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #1a263378;
}

#login-form-holder label {
    color: rgba(255, 255, 255, 0.8);
}

#login-form-holder h1 {
    color: rgba(255, 255, 255, 0.8);
}

#login-form-holder {
    -webkit-animation: 2s ease 0s normal forwards 1 fadein;
    animation: 2s ease 0s normal forwards 1 fadein;
}

#welcome-banner img {
    -webkit-animation: 3s ease 0s normal forwards 1 fadein;
    animation: 3s ease 0s normal forwards 1 fadein;
}

#welcome-banner h1 {
    /*border-bottom: 1px solid rgba(255, 255, 255, 0.38);*/
    margin-top: 15px !important;
    -webkit-animation: 4s ease 0s normal forwards 1 fadein, 2s ease 2s normal forwards 1 translateX;
    animation: 4s ease 0s normal forwards 1 fadein, 2s ease 2s normal forwards 1 translateX;
}

#welcome-banner .welcome-sep {
    margin-top: 20px !important;
    -webkit-animation: 5s ease 0s normal forwards 1 fadein, 2s ease 3s normal forwards 1 translateX;
    animation: 5s ease 0s normal forwards 1 fadein, 2s ease 3s normal forwards 1 translateX;
}

@keyframes fadein {
    0% {
        opacity: 0;
    }
    66% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes translateX {
    0% {
        opacity: 0;
        transform: translateX(6.25em);
    }
    66% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    66% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.rounded-btn {
    -webkit-border-radius: 50px;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    background-color: #2c3e50;
    border: 2px solid rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 40px;
    padding: 0 25px;
}

.rounded-btn:hover,
.rounded-btn:focus {
    background-color: white;
    color: #333333;
    outline: none;
}


/* 
button:hover,
button:focus {
    background-color: white;
    color: #333333;
    outline: 0;
} */

h1 {
    font-weight: 300;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 36px;
    small {
        color: rgba(255, 255, 255, 0.7);
        font-size: 20px;
        font-weight: 300;
    }
}

.form-group {
    padding: 8px 0;
    input::-webkit-input-placeholder {
        color: rgba(255, 255, 255, 0.6) !important;
    }
    input:-moz-placeholder {
        /* Firefox 18- */
        color: rgba(255, 255, 255, 0.6) !important;
    }
    input::-moz-placeholder {
        /* Firefox 19+ */
        color: rgba(255, 255, 255, 0.6) !important;
    }
    input:-ms-input-placeholder {
        color: rgba(255, 255, 255, 0.6) !important;
    }
}

.form-content {
    /* padding: 40px 0; */
    padding-top: 30px;
    padding-bottom: 10px;
}


/* login fields test: */

label {
    display: block;
    letter-spacing: 4px;
    padding-top: 10px;
    text-align: center;
    margin-bottom: 10px !important;
}

label .label-text {
    color: #9B9B9B;
    cursor: text;
    font-size: 10px;
    line-height: 18px;
    text-transform: uppercase;
    -moz-transform: translateY(-34px);
    -ms-transform: translateY(-34px);
    -webkit-transform: translateY(-34px);
    transform: translateY(-34px);
    transition: all 0.3s;
}

label input {
    background-color: transparent;
    border: 0;
    border-bottom: 2px solid rgba(255, 255, 255, .5);
    color: white;
    font-size: 20px;
    outline: 0;
    padding: 5px 20px;
    text-align: center;
    transition: all 0.3s;
    width: 270px;
}

label input:focus {
    max-width: 100%;
    width: 400px;
}

label input:focus+.label-text {
    color: #F0F0F0;
    font-size: 10px;
    -moz-transform: translateY(-74px);
    -ms-transform: translateY(-74px);
    -webkit-transform: translateY(-74px);
    transform: translateY(-74px);
}

label input:valid+.label-text {
    font-size: 10px;
    -moz-transform: translateY(-74px);
    -ms-transform: translateY(-74px);
    -webkit-transform: translateY(-74px);
    transform: translateY(-74px);
}

.bc-label-gray {
    color: #9B9B9B;
}

.text-white {
    color: rgba(255, 255, 255, 0.8);
}

.bc-validation-err-red-2 {
    border: 2px solid#D24D51;
    padding: 5px;
    border-radius: 7px;
}

.bc-validation-ok-green {
    border: 2px solid#5cb85c;
    padding: 5px;
    border-radius: 7px;
}

a:hover,
a:focus {
    color: #9B9B9B;
}
