

.masthead {
  height: 100vh;
  background-image: url('../img/fondo.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.btn-circle {
  width: 30px;
  height: 30px;
  text-align: center;
  font-size: 12px;
  line-height: 1.428571429;
  border-radius: 15px;
  margin-top: 5px;
  margin-left: 30px;
  background-color: white;
  color: black;
  transition: 0.6s;
}

/* Modal */
#darkModalForm .card-image{
  background-color: white;
  position: absolute;
  margin-top: 50px;
}

#darkModalForm .imgLogin{
  width: 50%;
  position: relative;
  top: -120px;
  margin: 0 auto;
  margin-bottom: -120px;
}

.imgLogin:hover{
  filter: sepia(60%);
}

 #formLg i{
   font-size: 30px;
   margin: 0 auto;
   padding-top: 5px;

 }

#formLg .row{
  padding-top: 20px;
  color: black;
}

#formLg .row:hover{
  color: orange;
  transition: 0.5s;
}

.uno{
  color: orange;
  transition: 0.6s;
}

@media (max-width: 574px) {
  #formLg i{
    font-size: 30px;
    margin: 0 auto;
    padding-top: 2px;
  }

  #formLg .row{
   padding-top: 10px;
  }

  .modal-title{
    font-size: 18px!important;
  }
}

/*Barra de navegacion - menu
*/
#navegacion {
  background-color: #545454!important;
  font-family: 'Righteous', cursive;
}

#navegacion .navbar-brand{
    color: white;
    font-weight: bold;
}

.navbarResponsive a{
  color: white;
}

/*texto de la imagen
*/
.texto {
  color: white;
}

.textPrin{
    font-family: 'Righteous', cursive;
}

.lead{
  font-family: 'Amatic SC', cursive;
  font-size: 25px;
}

.navbar-light .navbar-nav .nav-link{
  color: white;
  transition: 0.6s;
}

.navbar-light .navbar-nav .nav-link:hover{
  color: orange;
}

.btn{
  font-family: 'Righteous', cursive;
  box-shadow: 2px 2px 10px #666;

}

/*Login
*/
.mensaje-error{
    background-color: #E7C32E;
    position: absolute;
    left: 0px;
    bottom: 0;
    padding: 10px 0 ;
    border-radius:  0 0 5px 5px;
    color: #fff;
    width: 100%;
    text-align: center;
    display: none;
}

.form-group {
  position: relative;
  margin-top: 35px;
  margin-bottom: 20px;
}
.input-group {
  position: relative;
}
.form-control {
  display: block;
  height: 36px;
  width: 100%;
  border: none;
  border-radius: 0 !important;

  font-size: 16px;
  font-weight: 300;
  padding: 0;
  background-color: transparent;
  box-shadow: none;
  border-bottom: 1px solid #757575;
}
.input-group .form-control {
  position: relative;
  z-index: inherit;
  float: inherit;
  width: 100%;
  margin-bottom: 0;
}
.form-control:focus {
  border-color: #757575;
  outline: none;
  box-shadow: none;
}

/* -- label styles ---------------------------------- */
label {
  position: absolute;
  top: -18px;
  color: #999;
  font-size: 12px;
  font-weight: 300;

  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

.form-horizontal .control-label {
  position: relative;
  top: 0;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .form-horizontal .control-label {
    font-size: 16px;
  }
}





.float-label {
  left: 0;
  top: 7px;
  font-size: 16px;
  pointer-events: none;
}

/* active state */
.form-control:focus ~ .float-label, .form-control:valid ~ .float-label {
  top: -18px;
  font-size: 12px;
}


/* input colors ---- */
// default
.form-control:focus {
  ~ label {
    color: #03a9f4;
  }

  ~ .form-bar:before, ~ .form-bar:after {
    background: #03a9f4;
  }
}




.form-control:valid ~ .control-label {

}

/* help-block */
.form-group .help-block {
  position: absolute;
}

.help-block {
  color: #bdbdbd; // caption
  font-size: 12px;
  font-weight: 300;
}

/* input addon ---*/
.input-group-addon {
  border: none;
  background: transparent;
}

/* ------  inline ----*/
.input-group-addon, .form-inline .input-group {
  display: table-cell;
}

.input-group-addon, .input-group-btn {
  width: inherit;
}

.input-group {
  width: 100%;
}

@media (min-width: 768px) {
  .form-inline .form-group {
    margin-top: 16px;
  }

  .input-group-btn, .input-group .form-control, .input-group-addon, .form-inline .input-group {
    display: inline-block;
  }

  .input-group {
    width: auto;
  }
}

/* -- bar styles -------------------------------------- */
.form-bar {
  position: relative;
  display: block;
  width: 100%;
}
.form-bar:before, .form-bar:after 	{
  content: '';
  height: 1px;
  width: 0;
  bottom: 0;
  position: absolute;
  transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
}
.form-bar:before {
  left: 50%;
}
.form-bar:after {
  right: 50%;
}

/* active state */
.form-control:focus ~ .form-bar:before, .form-control:focus ~ .form-bar:after {
  width: 50%;
}

/* -- highlighter styles ------------------------------ */
.form-highlight {
  position: absolute;
  height: 60%;
  width: 60px;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.4;
}

/* active state */
.form-control:focus ~ .form-highlight {
  -webkit-animation: inputHighlighter 0.3s ease;
  -moz-animation: inputHighlighter 0.3s ease;
  animation: inputHighlighter 0.3s ease;
}

/* -- highlighter animation --------------------------- */
@-webkit-keyframes inputHighlighter {
  from { background:#5264AE; }
  to { width:0; background:transparent; }
}
@-moz-keyframes inputHighlighter {
  from { background:#5264AE; }
  to { width:0; background:transparent; }
}
@keyframes inputHighlighter {
  from { background:#5264AE; }
  to { width:0; background:transparent; }
}



#focusedInput {
  border-color: #ccc;
  border-color: rgba(82,168,236,.8);
  outline: 0;
  box-shadow: none;
}
