html, body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;

    text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  
  
}

.linkerchat_login input[type="text"], .linkerchat_login input[type="password"]
{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: normal;
  color: #3A3A3A;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(56, 55, 55, 0.2);
  height:32px;
  width: 100%;
  padding-left:5px;
  padding-right:5px;
}

 .linkerchat_login  input[type="text"]:focus, .linkerchat_login  input[type="password"]:focus {
  box-shadow: 0 0 2px rgb(76, 95, 100);  
  border-width: 0px;
  /*border-style: solid;
  border-color: rgb(56, 55, 55);*/
  outline:0px;
}


 input[type="text"], input[type="password"], input[type="email"] , textarea {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: normal;
    color: #3A3A3A;
    border-width: 0px;
    /*border-width: 1px;
    border-style: solid;
    border-color: #cccccc;*/
    padding-left: 7px;
    outline:0px;
  }

 input[type="email"]:focus, input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
    /*box-shadow: 0 0 2px rgb(76, 95, 100);*/
    outline:0px;
  }

  input[type="text"]:disabled {
    background: #f2f2f2;
    outline:0px;
  }

  .boton{
	  border: 0;
	  border: 0;
	  background: rgb(76, 95, 100);
	  color: white;
	  cursor: pointer;
    height: 32px;
    font-family: Arial, Helvetica, sans-serif;
  }

   /* Notificaciones */

     
   .NotificarValidacionesG, .NotificarValidaciones, .NotificarValidaciones_warning, .NotificarValidaciones_info, .NotificarValidaciones_required {
    color: white;
    position: absolute;
    opacity: 0;
    display: none;
    z-index: 2147483647;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: indianred;
    height: 30px;
    width: auto;
    min-width: 200px;
    border: 1px solid #ccc;
    -webkit-box-shadow: 3px 3px 5px -2px #666;
    -moz-box-shadow: 3px 3px 5px -2px #666;
    -ms-box-shadow: 3px 3px 5px -2px #666;
    -o-box-shadow: 3px 3px 5px -2px #666;
    box-shadow: 3px 3px 5px -2px #666;
    padding: 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  .NotificarValidaciones_warning {
    background: #c21c35;
  }
  .NotificarValidaciones_info {
    background: #47B350;
  }
  .NotificarValidaciones_required {
    color: black;
    background: #ffff00;
  }
  