/* Form Default */
.form-default {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 350px;
  -webkit-box-pack: justify;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.form-default input:not([type]),
.form-default input[type=text],
.form-default input[type=password],
.form-default input[type=email],
.form-default input[type=url],
.form-default input[type=time],
.form-default input[type=date],
.form-default input[type=datetime],
.form-default input[type=datetime-local],
.form-default input[type=tel],
.form-default input[type=number],
.form-default input[type=search],
.form-default select {
  border: none;
  border-bottom: 1px solid #a1a1a1;
  -moz-border-radius: 0;
       border-radius: 0;
  outline: none;
  height: 20px;
  margin: 0 0 20px 0;
  padding: 0 0 5px 0;
  -moz-box-shadow: none;
       box-shadow: none;
  -moz-box-sizing: content-box;
       box-sizing: content-box;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  color: #000;
}

.form-default textarea {
  border: none;
  border-bottom: 1px solid #a1a1a1;
  -moz-border-radius: 0;
       border-radius: 0;
  outline: none;
  margin: 0 0 20px 0;
  padding: 0 0 5px 0;
  -moz-box-shadow: none;
       box-shadow: none;
  -moz-box-sizing: content-box;
       box-sizing: content-box;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.form-default input:not([type]):focus:not([readonly]),
.form-default input[type=text]:focus:not([readonly]),
.form-default input[type=password]:focus:not([readonly]),
.form-default input[type=email]:focus:not([readonly]),
.form-default input[type=url]:focus:not([readonly]),
.form-default input[type=time]:focus:not([readonly]),
.form-default input[type=date]:focus:not([readonly]),
.form-default input[type=datetime]:focus:not([readonly]),
.form-default input[type=datetime-local]:focus:not([readonly]),
.form-default input[type=tel]:focus:not([readonly]),
.form-default input[type=number]:focus:not([readonly]),
.form-default input[type=search]:focus:not([readonly]),
.form-default textarea:focus:not([readonly]) {
  border-bottom: 1px solid #00589A;
/*   -moz-box-shadow: 0 0.5px 0 0 #00589A;
       box-shadow: 0 0.5px 0 0 #00589A; */
}

.form-group__label {
  font-weight: normal;
  font-size: 11px;
  color: #a1a1a1;
  margin-bottom: 0;
}

.form-default .input-lectura {
  display: block;
  color: #000;
}

.form-default__actions--balanced {
  margin-top: 10px;
  margin-bottom: 10px;
}

.form-default--filtros {
  min-height: auto;
}

.form-group--login {
  margin-bottom: 15px;
}

.form-group--login .form-control {
  margin-bottom: 0 !important;
}

/* User info */
.user-info {
  margin-bottom: 25px;
}

.user-info__image {
  width: 90px;
  height: 90px;
  -moz-border-radius: 100%;
       border-radius: 100%;
}

.left-login { 
  flex: 1;
  padding: 0;
  -ms-flex: 1;
}

.img-login { 
  background-image: url(background.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

/* Login Form */
.brand-login {
  text-align: center;
  padding: 15px 0;
}

.brand-login__icono {
  display: inline-block;
}

@media (min-width: 480px) {
  .brand-login {
    padding: 50px 0 30px 0;
  }
}

.brand-login__slogan {
  color: lime;
}

/* Login Form */
#right-login {
  height: 100vh;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 25px;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

@media (min-height: 200px) and (max-height: 500px) and (max-width: 1600px) {
  #login {
    margin-top: 15px;
    height: inherit;
  }
}

.login {
  margin: auto;
  width: 100%;
  min-width: 200px;
  max-width: 450px;
  font: 13px Arial, Verdana, sans-serif;
  overflow: hidden;
  cursor: default;
/*  -moz-box-shadow: 0 0 5px #C5C5C5;
       box-shadow: 0 0 5px #C5C5C5;*/
}

.login__brand {
  padding: 20px;
}

.login__brand img {
  width: 45%;
}

.login__info {
  padding: 40px 20px 50px 20px;
}

.login__infoTitle {
  color: #00589A;
  font-size: 22px;
  font-weight: bold;
  padding-bottom: 10px;
}

@media (max-width: 767px) {
  .login__infoTitle {
    font-size: 16px;
  }
}

.login__infoTitle hr {
  border: 1.5px solid #8CC63F;
  margin: 20px 0px 0px 0;
  width: 35%;
}

.login__title {
  font-size: 14px;
  font-weight: bold;
  color: red;
}

.login .input-group {
  margin-bottom: 15px;
}

.login__form {
  padding: 15px 20px 42px 20px;
  background: #fff;
  display: inherit;
  min-height: 120px;
  border: 1px solid #E7E7E7;
}

@media (max-width: 400px) {
  .login {
    margin-top: 24px;
  }
}

/* Error Input */
.error-input {
  color: #a94442;
  font-size: 11px;
  font-weight: bold;
}

.form__title {
  color: #00589A;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 15px;
}

.recuperar-clave {
  margin-top: 4px;
  padding-bottom: 10px;
}

.recuperar-clave a { 
  color: #00589A;
  font-size: 11px;
}

/* Error default */
.error-default {
  margin-top: -50px;
}

/* Btns Custom */
.btn-green { 
  color: #fff;
  background-color: #8CC63F;
  border-color: #8CC63F;
}

.btn-green:focus, .btn-green:hover, .btn-green:active {
    color: #fff;
    text-decoration: underline;
}