﻿/* BTN ENTRAR */
a.btn-entrar,
a.btn-entrar:link,
a.btn-entrar:visited {
    display: inline-flex;
    align-items: center;
    padding: 0px 15px;
    height: 32px;
    /* margin-right: -10px; */
    background-color: rgba(0, 0, 0, 0.12);
    border-radius: 35px;
    border: 1px solid #C4C4C4;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.87);
    gap: 5px;
}

a.btn-entrar:hover,
a.btn-entrar:link:hover,
a.btn-entrar:visited:hover {
    color: rgba(255, 255, 255, 1);
}

.mask-right {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background-color: #07958e;
}
.mask-right:before {
    position: absolute;
    left: -8px;
    top: 0;
    display: inline-flex;
    width: 20px;
    height: 100%;
    background-color: #07958e;
    transform: skew(-15deg, 0deg);
     content: '';
}
.mask-right.logado {
    padding-right: 25px;
}
.mask-right.deslogado {
    min-width: 140px;
}
.phone .mask-right.logado {
    padding-right: 0;
}

/* BOX USER */
.box-user {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 18px;
    border-bottom: 1px solid #707070;
    text-align: left;

}
    .box-user__nome {
        font-size: 16px;
        font-weight: 700;
        color: #009B91; 
        white-space: nowrap;
    }
    .box-user__pn {
        display: flex;
        flex-direction: row;
        align-items: center;
        font-size: 14px;
        color: #747474;
    }
    .box-user__pn > span {
        font-weight: 700;
        color: #009B91;
    }
.box-user__opcoes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 18px;
}
    a.box-user__item,
    a.box-user__item:link {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: #747474;
    }
    a.box-user__item > i,
    a.box-user__item:link > i {
        font-size: 24px;
    }    
