body {
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 100%;
    line-height: 1.3em;
    color: #717171;
    background: #f1f1f1
}

input {
    box-shadow: none;
    border: none;
    display: block;
    -webkit-appearance: none
}

input:focus {
    box-shadow: none;
    border: none;
    outline: none;
    -webkit-appearance: none
}

a {
    font-family: Arial;
    color: #000;
    text-decoration: none;
    transition: all .5s ease
}

a:focus,
a:hover {
    text-decoration: none
}

.message {
    border: 1px solid;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 7px
}

.message.warning {
    background-color: #fcf8e3;
    border-color: #b7ae80;
    color: #8a6d3b
}

.message.success {
    background-color: #dff0d8;
    border-color: #89bc75;
    color: #3c763d
}

.message.info {
    background-color: #d9edf7;
    border-color: #91c3dd;
    color: #31708f
}

.message.danger {
    background-color: #f2dede;
    border-color: #ebcccc;
    color: #a94442
}

.btn {
    background-color: transparent;
    padding: 12px 6px;
    font-size: 14px;
    text-transform: uppercase;
    box-sizing: border-box;
    outline: none;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .14);
    cursor: pointer;
    border-radius: 2px;
    width: 100%;
    margin-bottom: 20px;
    transition: all .5s ease
}

.btn-primary {
    background-color: #ed4700;
    color: #fff;
    font-weight: 700;
    letter-spacing: .5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, .14);
    width: 100% !important
}

.btn-primary:hover {
    background-color: #0c116b
}

.btn-primary:disabled {
    transition: none;
    color: transparent !important;
    min-height: 1.6rem;
    pointer-events: none;
    position: relative;
    text-shadow: none;
    background-color: #a1a8b1
}

.btn-primary:disabled::after {
    animation: loading 650ms infinite linear;
    border: .2rem solid #fff;
    border-radius: .8rem;
    border-right-color: transparent;
    border-top-color: transparent;
    content: "";
    display: block;
    height: 1.2rem;
    left: 50%;
    margin-left: -.8rem;
    margin-top: -.8rem;
    position: absolute;
    top: 50%;
    width: 1.2rem
}

@keyframes loading {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.btn-flat {
    box-shadow: none;
    opacity: .5
}

.btn-flat:hover {
    opacity: 1
}

#login-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: row
}

.text-main {
    color: #4e4e4e;
    font-size: 34px;
    cursor: default
}

.text-main::selection {
    color: #4e4e4e;
    background-color: transparent
}

.text-muted {
    color: #777;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 16px;
    cursor: default
}

.text-muted::selection {
    color: #777;
    background-color: transparent
}

.text-secundary {
    color: #4e4e4e;
    cursor: default
}

.text-secundary::selection {
    color: #4e4e4e;
    background-color: transparent
}

.sub-secundary-text {
    color: #4e4e4e;
    cursor: default
}

.sub-secundary-text::selection {
    color: #4e4e4e;
    background-color: transparent
}

.display-lg {
    font-weight: 700;
    font-size: 60px;
    line-height: 56px;
    text-transform: uppercase;
    margin: auto
}

.login-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    box-sizing: border-box;
    flex: 33%;
    max-width: 500px;
    position: relative;
    z-index: 100;
    box-shadow: 5px 0 35px 10px #00000025;
    background: #fff
}

@media (min-width:1000px) {
    .login-card {
        padding: 48px
    }
}

.login-card-form {
    margin-top: 48px;
    width: 100%
}

.input-group {
    position: relative;
    margin-bottom: 24px
}

.input-group .m-i {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    opacity: .25;
    transition: all .5s ease
}

input:focus+.m-i:not(.show-hide-pass) {
    color: #ed4700;
    opacity: 1
}

.show-hide-pass {
    transition: none !important;
    opacity: 1 !important;
    cursor: pointer;
    color: #ed4700;
}

.show-hide-pass:hover {
    color: #0c116b;
}

.show-hide-pass::selection {
    color: #ed4700;
    background-color: transparent
}

.input-group input {
    padding: 6px 29px 6px 6px;
    border-bottom: 2px solid rgba(6, 28, 51, .25);
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    transition: all .5s ease
}

.input-group input:focus {
    border-color: #1c1939
}

@media (min-width:1240px) {
    .btn-group .btn {
        width: 48%;
        margin-right: 2%
    }

    .btn-group .btn:last-child {
        margin-right: 0
    }
}

.login-card-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 24px;
    border-top: 1px solid rgba(0, 0, 0, .1);
    text-align: center;
    width: 100%;
    box-sizing: border-box
}

.login-card-footer p {
    margin: 0;
    font-size: 12px
}

@media (max-width:930px) {
    .login-image {
        display: none
    }

    .login-card {
        flex: 100%;
        max-width: 100%
    }

    .login-card-form {
        max-width: 500px
    }
}

@media (max-width:600px) {
    .login-image {
        display: none
    }

    .login-card {
        flex: 100%;
        max-width: 100%
    }
}