﻿/**********************************************************************
            Form de login
***********************************************************************/
.login-form {
    background-color: #fbfbfb;
    border: 1px solid #ddd;
}

    .login-form .login-form-header .logo-group {
        width: 100%;
        height: 60px;
        background-color: #00247d;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .login-form .login-form-header .logo-group .logo {
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .login-form .login-form-header .logo-group .logo img {
                width: 150px;
            }

    .login-form .login-form-body {
        padding: 10px;
        min-height: 200px;
    }

        .login-form .login-form-body .label-link {
            text-decoration: underline;
            cursor: pointer;
        }

            .login-form .login-form-body .label-link:hover {
                color: #00247d;
            }

        .login-form .login-form-body .msgError {
            color: red;
            font-size: 25px;
            text-align: center;
            margin: 50px 0px 0px 0px;
        }

    .login-form .login-form-footer {
        padding: 15px;
        border-top: 1px solid rgba(0, 0, 0, .1);
        background: rgba(248, 248, 248, .9);
        height: 70px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

        .login-form .login-form-footer .btn {
            padding: 7px 20px 7px 20px;
            font: 15px;
            cursor: pointer;
            border-radius: 3px;
            color: #fff;
            background-color: #063390;
        }


/**********************************************************************
            input com icone
***********************************************************************/
.input-icon {
    position: relative;
}

    .input-icon i {
        color: #A2A2A2;
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        pointer-events: none;
        padding-left: 6px;
        border-left-width: 1px;
        border-left-style: solid;
        font-size: 20px;
    }

    .input-icon input {
        padding-right: 30px;
    }







/*=============================
        btn com Icone
 ===============================*/
@media (max-width: 768px) {
    .btn-icon {
        width: 100% !important;
        margin: 3px 0px 0px 0px !important;
    }
}

.btn-icon {
    display: inline-block;
    margin: 3px 3px 3px 3px;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 5px;
    white-space: nowrap;
    padding: 3px 12px;
    font-size: 15px;
    -moz-user-select: none;
    -ms-user-select: none;
    background-color: #063390;
    color: #ffffff !important;
    text-decoration: none;
}

    .btn-icon .btn-label {
        position: relative;
        left: -8px;
        display: inline-block;
        padding: 5px 0px 5px 5px;
        color: #ffffff;
        background: unset;
    }

        .btn-icon .btn-label i {
            font-size: 16px;
            color: #ffffff;
        }

.btn-icon-left {
    float: left;
}

.btn-icon-right {
    float: right;
}

.btn-icon-cinza {
    background-color: #817a7a !important;
}

.btn-icon-preto {
    background-color: #2d2d2d !important;
}

.btn-icon-vermelho {
    background-color: #d22630 !important;
}

.btn-icon-verde {
    background-color: #189d0e !important;
}