* {
    line-height: 1.2;
    margin: 0;
}

a:link {
    color: #fff;
}

a:visited {
    color: #fff;
}

a:hover {
    color: #888;
}

a:active {
    color: #888;
}

html {
    color: #fff;
    display: table;

    height: 100%;
    text-align: center;
    width: 100%;
    background: #1e5799;
    height: 100%;
    margin: 0 auto;

}

body {
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #fff;
    display: table-cell;
    vertical-align: middle;
    margin: 2em auto;
    background-image: url('/view/jmp/auth/img/login-form-bg.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}



footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    margin-bottom: 10px!important;
}

footer p {
    color: #888;
    width: 100%;
    text-align: right;
    font-family: arial;
    font-size: .8em;
}

p {
    margin: 0 auto;
    width: 380px;
}

@media only screen and (max-width: 280px) {
    body,
    p {
        width: 95%;
    }
}
.login-form {
    width: 450px;
    margin: 50px auto;
}
.login-form form {
    margin-bottom: 15px;
    background: rgba(248, 248, 248, 0.6);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    padding: 30px;

}
.login-form h2 {
    margin: 0 0 15px;
    color:#000;
}
.form-control, .btn {
    min-height: 38px;
    border-radius: 0px;
}
.btn {
    font-size: 15px;
    font-weight: bold;
}

.hr-sect {
    display: flex;
    flex-basis: 100%;
    align-items: center;
    color: rgb(0, 0, 0);
    font-size: 1rem;
    margin: 8px 0px;
}
.hr-sect::before,
.hr-sect::after {
    content: "";
    flex-grow: 1;
    background: rgb(0, 0, 0);
    height: 1px;
    font-size: 0px;
    line-height: 0px;
    margin: 0px 16px;
}


.form-control:focus {
    border-color: #17a2b8;
    box-shadow: 0 0 0 0.2rem rgb(23 162 184 / 50%);
}

.alert{
    border-radius:0;
}
.alert-black {
    color: #000;
    background-color: transparent;
    border: 1px dashed #000;
}
.alert-red{
    color: #ff0000;

    border: 1px dashed #ff0000;
}
.alert-green{
    color: #46b30a;

    border: 1px dashed #46b30a;
}
.alert-blue{
    color: #1581de;
    background-color: #0000003b;
    border: 1px dashed #1581de;
}

.btn-blue {
    color: #fff;
    background-color: #213b5d;
    border-color: #213b5d;
    font-weight: 400;
}
.btn-blue:hover {
    color: #fff;
    background-color: #27456d;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #7ac142;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 0 auto;
    box-shadow: inset 0px 0px 0px #7ac142;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}


.errormark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #ff0000;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.errormark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 0 auto;
    box-shadow: inset 0px 0px 0px #ff0000;
    animation: fillRed .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}
.errormark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 29;
    stroke-dashoffset: 29;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}


@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}
@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #7ac142;
    }
}


@keyframes fillRed {
    100% {
        box-shadow: inset 0px 0px 0px 30px #ff0000;
    }
}