@import 'variablesGlobales.css';
html,
body {
    height: 100%;
}

body {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #f5f5f5;
}

/*Diseños personalizados*/
.UiView{
    width: 100vw;
}

.diseñoGeneral{
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.diseñoGeneralAll{
    padding: 0px;
    justify-content: flex-start;
}

.Contlogout{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    height: 10vh;
}

.BtnLogout{
    height: 40px;
    width: 90px;
    margin-right: 25px;
    margin-top: 10px;
}

.PieDePagina{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 5vh;
}

.BtnLogout {
    padding: 10px 25px;
    overflow:hidden;
    border: none;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
    /*padding: 10px;*/
    /*font-size: 18px;*/
    border-radius: 5px;
    position: relative;
    box-sizing: border-box;
    transition: all 500ms ease;
}

.BtnLogout:hover {
    background: rgba(0,0,0,0);
    color: #3a7999;
    box-shadow: inset 0 0 0 3px #3a7999;
}

.BtnLogout:before {
font-family: FontAwesome;
content:"\f08b";
position: absolute;
top: 11px;
left: -30px;
transition: all 200ms ease;
}

.BtnLogout:hover:before {
left: 7px;
}

