html, body {
    height: 100%;
}

.login-bg {
    background-image: linear-gradient(#1d3557, #457b9d);
    height: 100vh;
}

.login-page {
    height: 100%;
    align-content: center;
}

.login-page .card {
    padding: 25px;
    height: auto;
    margin-top: auto;
    margin-bottom: auto;
    width: 400px;
    /* background-color: #eee !important; */
    /* box-shadow: 0px 0px 4px #fff; */
    border-radius: 4px;
    background: none;
    box-shadow: none;
}

.login-page input {
    color: #fff;
}

.login-page input::placeholder {
    text-transform: capitalize;
    font-weight: 400;
    letter-spacing: 1px;
    color: #999;
    font-weight: 12px;
}

.login-page input[type=text]:focus:not([readonly]), .login-page input[type=password]:focus:not([readonly]) {
    border: 1px solid #003559;
}

.login-page .input-group-prepend span {
    width: 50px;
    background-color: #003559;
    color: black;
    border: 0 !important;
}

.login-page input:focus {
    outline: 0 !important;
    box-shadow: 0 0 0 0 !important;

}

.login-page .remember {
    color: white;
}

.login-page .remember input {
    width: 20px;
    height: 20px;
    margin-left: 12px;
    margin-right: 5px;
    position: unset !important;
    color: #fff;
    background: #fff;
    opacity: 1 !important;
    z-index: 999 !important;
    vertical-align: middle;
}

.login-page .login_btn {
    color: #fff;
    background-color: #003559;
    width: 100%;
    text-transform: capitalize;
    font-size: 15px;
    border-radius: .25rem;
}

.login-page input {
    color: #495057;
    width: -webkit-fill-available !important;
    padding: 0 10px !important;
    border: 1px solid #ced4da;
    background: #fff;
    height: 35px;
    border-radius: .25rem;
    font-size: 13px;
}
.login-page label{
    color: #5a5a5a !important;
}
.login-page .links {
    color: white;
}

.login-page .links a {
    margin-left: 4px;
}

.login-page .logo {
    width: 180px;
    margin: 0 auto;
    display: flex;
}

.login-page .card-header {
    padding-top: 2%;
    padding-bottom: 5%;
    text-transform: capitalize;
}

.login-page .card-body {
    padding: 25px 40px;
    background-color: #eee !important;
    box-shadow: 0px 0px 4px #fff;
    border-radius: 4px;
}
.login-page .card-body .row{
    margin-bottom: 0;
}
.login-page .card-body h2{
    color: #000;
    position: relative;
    /* margin-bottom: 30px; */
    font-size: 25px;
    text-align: center;
}
.login-page .card-body h2:before,
.login-page .card-body h2:after {
    content: "";
    height: 1px;
    position: absolute;
    top: 15px;
    width: 20%;
    background: #000;
}
.login-page .card-body h2:before {
    left: 0;
}
.login-page .card-body h2:after {
    right: 0;
}
.login-page .card-footer {
    padding-bottom: 2%;
}

.login-page .card-footer a {
    color: #003559;
}

.login-page .card-footer a:hover {
    text-decoration: underline;
    color: #003559;
}

.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.h-100 {
    height: 100%;
}
