/*NARAGA #c0562f  #c2452c*/
/*AZUL #051955*/

:root{
    --BtnPrimary: #051955;
    --BtnSecondary: #1565c0;
    --colorPrimario:#00E676;
    --colorSecundario:#1B0640;
    --colorTableCell1:#051955;
    --colorTableCell2:#FFFFFF;
    --colorLetraTable:#808080;
}
*{
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    margin-top: -1px;
}
.bodyLogin{
    background-image: url(../../../darphasoft/admin/img/iconostema/background_darphasoft.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    background-attachment: fixed;
}
#msjError{
    color: #de0000cc;
    font-size: 16px;
    margin-top: 3px;
}
#loadPlatform{
    background-image: url(../../../darphasoft/admin/img/iconostema/background_darphasoft.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index:0;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top:0;
    bottom:0;
    margin:auto;
    background-color: white;
    overflow:hidden;
    display: none;
}
#loadPlatform.active{
    z-index: 104;
    display: block;
    opacity: 1;
}
#loadPlatform .bodyLoad{
    background-color: transparent;
    transition: 1s;
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    right: 0;
    top:0;
    bottom:0;
    margin:auto;
    border-radius: 50%;
    overflow:hidden;
    opacity: 0;
}
#loadPlatform.active .bodyLoad.active{
    transition: 1s;
    width: 100%;
    height: 100%;
    opacity: 1;
    border-radius: 0%;
}
#loadPlatform .bodyLoad div{
      /* border:  1px solid; */
      width: 25%;
      height: 250px;
      position:  absolute;
      left:  0;
      right:  0;
      top:  0;
      bottom:  0;
      margin:  auto;
      display:  inline-block;
      opacity: 0;
      transition: .5s;
      /*overflow: hidden;*/
}
#loadPlatform.active .bodyLoad.active div{
   transition: .5s;
   opacity: 1;
}
#loadPlatform .bodyLoad div img.logoCenter{
    /* border:  1px solid; */
    position:  absolute;
    max-height: 200px;
}
#loadPlatform .bodyLoad div img.logoParte1{
    position: absolute;
    height: 100%;
    margin-left: 30px;
}
#loadPlatform .bodyLoad div img.logoParte2{
    position: absolute;
    height: 65%;
    margin-top: 24px;
    margin-left: 0;
}
#loadPlatform .bodyLoad div img.logoParte3{
    position: absolute;
    right: 75px;
    top: 35px;
}
#loadPlatform .bodyLoad div img.logoParte4{
    position: absolute;
    right: 0;
    bottom: 45px;
}

#cajaLogin,#cajaForgetPwd{
    transition: .5s;
    box-shadow: 3px 5px 9px 1px #ebedf19e;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 40%;
    max-width:500px;
    min-width:300px;
    height: 65%;
    max-height:600px;
    min-height: 500px;
    margin: auto;
    background-color: #fffffff7;
    border-radius: 10px;
    z-index:1;
    opacity: 1;
    overflow: hidden;
}
#cajaLogin.off,#cajaForgetPwd.off{
    transition: .5s;
    z-index:0;
    opacity: 0;
}
.btnForgetPwd{
    position: absolute;
    bottom: -40px;
    margin:auto;
    background-color: var(--BtnPrimary);
    color: white;
    width: 75%;
    max-width: 350px;
    font-size: 14px;
    text-align: center;
    display: block;
    margin: auto;
    left: 0;
    right: 0;
    padding: 15px 10px 55px 10px;
    border-radius: 60px;
}
.btnForgetPwd:hover{
    text-decoration:none;
    color:var(--BtnSecondary);
}
.headerLogin{

text-align: center;

padding: 10px;
}
.headerLogin img{
    height: 120px;
    display: block;
    margin: auto;
    margin-top: 20px;
}
.headerLogin h1{
    margin: auto;
    margin-top: 5px;
    font-size: 25px;
    font-weight: 600;
    color: #737373;
}
.input-group{}
.input-group span{
    border: none;
    border-bottom: 1px solid var(--colorLetraTable);
    border-radius: 0px;
    background-color: transparent;
}
.input-group input[type="text"], .input-group input[type="password"], .input-group input[type="email"]{
    border: none;
    border-bottom: 1px solid var(--colorLetraTable);
    border-radius: 0px;
    box-shadow: none;
    font-size: 18px;
}
.colorBtnSecondary{
    background-color:var(--BtnSecondary);
    border-radius: 5px;
    padding: 10px 25px 10px 25px;
    display: block;
    width: 150px;
    margin: auto;
    color: white;
    border: none;
}
.colorBtnPrimary{
    background-color:var(--BtnPrimary)
}
.mT-lg{ margin-top: 25px; }
.mT-md{ margin-top: 8px; }
.mT-sm{ margin-top: 10px; }
.mT-xs{ margin-top: 5px; }
.mB-lg{ margin-bottom: 0px; }
.mB-md{ margin-bottom: 18px; }
.mB-sm{ margin-bottom: 10px; }
.mB-xs{ margin-bottom: 5px; }
.mR-md{ margin-right: 10px; }