@font-face {
    font-family: 'Calibri';
    src: url('../fonts/calibri-font-family/calibri-regular.ttf');
}
body{
    margin:0;
    padding:0;
    font-family: 'Calibri';
}
p,
input,
button{
    font-family: 'Calibri';
}
#inicio {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  color: white;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; 
}
#inicio:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #565859;
    content: ''; 
}

/*Estilos al login de inicio*/
.contenedor {
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index:9999;
   /*  margin-right: 130px; */
}
.sist{
    color: white!important;
}
.bienvenido{
    min-height: 570px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}
.contra{
    font-weight: 800;
}
.sistema{
    margin-bottom: 50px;
    font-weight: 800;
}
.inicia-sesion{
    background-color: #565859;
    min-height: 579px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 324px !important;
}
.inicia-sesion a{
    color: white !important;
    text-align: right;
    text-decoration: none;
    margin: 15px 17px;
}
.inicia-sesion h1{
    color: white !important;
    text-align: center;
}

.inicia-sesion> .form-group input {
    background: #eee;
    border: none;
    border-left: 3px solid #565859;
    padding: 12px 6px;
    margin: 8px 0;
    width: 90%;
}

button {
    border-radius: 20px;
    border: 1px solid white;
    background: white;
    color: #565859;
    font-size: 14px;
    font-weight: 800;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    cursor: pointer;
    width: 92%;
    margin-left: auto;
    margin-right: auto;
}

button:active {
    transform: scale(.95);
}

button:focus {
    outline: none;
}

button.ghost {
    background: transparent;
    border-color: #fff;
    cursor: pointer;
}

input:focus-visible{
    outline: 2px solid #565859;
}
.d-none{
    display: none;
}
@media(min-width:992px){
    .d-lg-none{
        display: none;
    }
    .d-lg-flex{
        display: flex;
    }
    .contenedor {
        margin-right: 130px;
    }
    .inicia-sesion{
        width: 450px !important;
    }
    .inicia-sesion{
        background-color: #fff;
        color: black;
    }  
    .inicia-sesion a{
        color: #565859 !important;
    }
    .inicia-sesion h1{
        color: #565859 !important;
    }
    .sist{
        color: #424242eb !important;
    }
    button {
        border: 1px solid #565859;
        background: #565859;
        color: #fff;
    }
    #inicio:before {
        background-color: rgba(0, 0, 0, 0.3);
    }
}

