:root {
  /* */
  /* RGBA color para el fondo opaco */
  --main-bg-color: rgba(211, 205, 205, 0.2);
  /* Texto LOGIN en el login y derechos reservados */ 
  --texto-login-color: #ffffff;
  /* Color texto Fa icon y del borde del boton*/
  --fa-icon-color: #E2C520;
  /* fondo del titulo del login y boton*/
  --login-h1-bgcolor: #212223;
  /* Borde del input */
  --input-border: rgb(121, 106, 26);
  
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
display: block;
}

* {
  box-sizing: border-box;
}
body, html {
  color:#333;
  background: linear-gradient(180deg,#2B384C,#a79c0d);
  background-size: cover;
  background-position: center;
  height: 100vh;
}
.loginbody {
font-family: 'pt_sansregular';
font-size:14px;
position: relative;
  text-align: center;
  display: block;
  color:var(--texto-login-color);
  padding: 10px;

}
.loginbody button:hover {
  background: #3F4242 !important; 
}
.opaco{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--main-bg-color);
  text-align: center;

}
  .loginbody > div {
      max-width: 290px;
      margin:20px auto;
  }
  .loginbody > div > div {
      box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.1);
      display: block;
      background-color: #FFF;
      border-radius: 5px;
  overflow:hidden;
  }
  .loginbody > div > div > div{
  background:#5D5E5C;
      padding: 20px 30px 30px;
  }
  .loginbody h1{
  margin: 0;
  background:var(--login-h1-bgcolor);
  padding:20px 30px 30px;
  font-weight: normal;
      color: var(--texto-login-color);
      font-size: 25px;
      text-align: center;
      padding-bottom: 12px;
      letter-spacing: -1px;

  }
  .loginbody h1 > i{
      color:var(--fa-icon-color)

  }
  .loginbody h3 {
  margin: 0px 0px 10px;
  text-align: center;
  }
.loginbody  label{
  padding:7px 0px 5px;
}
  .loginbody button {
      width:100%;
  display:block;
  margin-top:18px;
      margin-bottom:8px;
      background-color: var(--login-h1-bgcolor) !important;
  color: #FFF;
  text-transform: uppercase;
  font-family: 'pt_sansregular', FontAwesome;
  font-size: 15px;
  line-height: 1.33;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border: solid 1px var(--fa-icon-color) !important;
  margin-top: 18px;
  }
  .loginbody button:hover {
  background:#ff7c01;
  }
  .loginbody p {
      text-align: center;
      color: var(--texto-login-color);
      font-size: 14px;
      padding-top: 10px;
  }
  .loginbody input[type="text"],
.loginbody input[type="password"] {
  background-color: #F5F8F9 !important;
  border: 1px solid var(--input-border) !important;
  display:block;
  padding: 10px 12px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  width: 100%;
  font-family: 'pt_sansregular', FontAwesome;
  color: #555;
  }
  .banner {
      align-content: center;
      display: none;
      justify-content: center;
      width: 100%;
    }
    .switch {
      position: relative;
      display: inline-block;
      width: 60px;
      height: 34px;
    }
    
    /* Hide default HTML checkbox */
    .switch input {
      opacity: 0;
      width: 0;
      height: 0;
    }
    
    /* The slider */
    .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #ccc;
      -webkit-transition: .4s;
      transition: .4s;
    }
    
    .slider:before {
      position: absolute;
      content: "";
      height: 26px;
      width: 26px;
      left: 4px;
      bottom: 4px;
      background-color: white;
      -webkit-transition: .4s;
      transition: .4s;
    }
    
    input:checked + .slider {
      background-color: var(--login-h1-bgcolor);
    }
    
    input:focus + .slider {
      box-shadow: 0 0 1px var(--login-h1-bgcolor);
    }
    
    input:checked + .slider:before {
      -webkit-transform: translateX(26px);
      -ms-transform: translateX(26px);
      transform: translateX(26px);
    }
    
    /* Rounded sliders */
    .slider.round {
      border-radius: 34px;
    }
    
    .slider.round:before {
      border-radius: 50%;
    }

    #logo{
      width: 100%;
      max-width: 250px;
      height: auto;
    }
    .loginSwitch{
        background:#5D5E5C !important;
        padding: 10px 10px 10px;
        
    }
