#carregando{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999;
    opacity: 0.65;
    -moz-opacity: 0.65;
    filter: alpha(opacity=65);
    background: black;
    text-align: center;
    padding-top: 35%;
}

.label {
    font-weight: 700;
    font-size: 12px;
}

.form-control {
    padding: 0.625rem;
    border: 1px solid #B7C6CD;
    border-radius: 2px;
    min-height: 40px;
}

.text-muted {
    color: #607D8B;
    font-size: 12px;
}

.btn-primary {
    background-color: #03A9F4;
    border-color: #03A9F4;
    border-radius: 2px;
}

.btn-primary:hover {
    background-color: #2196F3;
    border-color: #2196F3;
}

.btn-link, a {
    color: #03A9F4;
}

.btn-link:hover, a:hover {
    color: #2196F3;
}

.bg-cover {
    background-image: url('../../../assets/images/bg/login/23.jpg');
    background-size: cover;
    width: 100%;
    height: 100vh;
    background-position: 10% 50%;
}

.l-logo {
    position: fixed;
    top: 40px;
    width: 240px;
}

.l-container {
    width: 450px;
}

.l-social {
	width: 40px;
}

#exibir-senha {
	cursor: pointer;
}

.loading {
    overflow: hidden;
    margin: 0 auto;
    background: #F1F4F9;
}

.loading__icon {
    position: absolute;
    z-index: 1;
    fill: #fff;
}

.loading__fill {
    width: 205px;
    height: 135px;
    background: #03A9F4;
    -webkit-animation: fillUp 1.5s ease-in infinite;
    animation: fillUp 1.5s ease infinite;
}

@keyframes fillUp {
    0% {
        -webkit-transform: translate(0, 140px);
        transform: translate(0, 140px);
        opacity: 1;
    }
    100% {
        -webkit-transform: translate(0, -135px);
        transform: translate(0, -135px);
        opacity: 0;
    }
}

.loading__box {
    height: 100vh;
}