/* FORM */
.title-main {
  margin-bottom: 2rem;
}

form * {
  box-sizing: border-box;
}
form a {
  color: rgba(0, 0, 0, 0.5);
}
form a:hover {
  color: rgba(255, 255, 255, 0.65);
}
form .formItem {
  position: relative;
  margin: auto auto 5px auto;
  width: 100%;
}

/* SELECT */
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
select.not_chosen {
  color: #3e4554;
}
select option {
  color: #3e4554;
}
select option:first-child() {
  color: rgba(0, 0, 0, 0.5);
  font-size: 0px;
  display: none;
}

/* INPUT */
.form-control {
  width: 100%;
  border: 0;
  font-family: inherit;
  padding: 15px 0 10px 12px;
  height: auto;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 0 solid rgba(62, 69, 84, 0.7);
  background: none;
  border-radius: 0;
  color: #333;
  transition: all 0.15s ease;
  box-shadow: none;
  z-index: 1;
  position: relative;
  background: transparent;
}
.form-control:focus {
  box-shadow: none !important;
  outline: none;
  border-bottom: 0 solid rgba(62, 69, 84, 0);
}

/* Label */
.form-control + div {
  color: rgba(0, 158, 226, 0.6);
  position: absolute;
  bottom: 10px;
  left: 10px;

  transition: all 0.15s ease;
  font-weight: bold;
}
input.form-control:focus + div,
input.form-control:valid + div,
select:focus + div,
select:not(.not_chosen) + div {
  color: rgba(0, 158, 226, 1);
  transform: translateY(-22px) translateX(0);
  font-size: 0.7em;
  font-weight: 400;
  background: #fff;
  padding: 0 5px;
  z-index: 2;
}

/* placeholder */
.form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(0, 0, 0, 0.35);
}
.form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(0, 0, 0, 0.35);
}
.form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(0, 0, 0, 0.35);
}
.form-control:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(0, 0, 0, 0.35);
}
select.not_chosen {
  color: rgba(0, 0, 0, 0.35);
}

/* estilo de input y estados ////////////////////////////////////*/
/* input border bottom */
.form-control + div + .border {
  background: rgba(0, 158, 226, 1);
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 0;
  transition: all 0.35s ease;
  z-index: 2;
}
input.form-control:focus + div + .border,
input.form-control:valid + div + .border,
select:focus + div + .border,
select:not(.not_chosen) + div + .border {
  transform: scaleX(1);
}
/* input bordes redondeados */
.form-control + div + .borderRadius {
  position: absolute;
  top: 5px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border: solid 2px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.35s ease;
  background: rgba(255, 255, 255, 1);
}
input.form-control:focus + div + .borderRadius,
input.form-control:valid + div + .borderRadius,
select:focus + div + .borderRadius,
select:not(.not_chosen) + div + .borderRadius {
  border-color: #00385c;
}
/*///////////////////////////////////////////////////////////////*/
/* EMAIL */
#email input.form-control {
  text-transform: lowercase;
}

/* CHECKBOX */
input[type="checkbox"] {
  display: none;
}
input[type="checkbox"] + label {
  position: relative;
  padding-left: 30px;
  padding-top: 11px;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.5);
}
input[type="checkbox"] + label:before,
input[type="checkbox"] + label:after {
  font-size: 30px;
  font-family: FontAwesome;
  position: absolute;
  top: 0;
  left: 0;
}
input[type="checkbox"] + label:before {
  content: "\f096";
}
input[type="checkbox"] + label:after {
  content: "\f00c";
  font-size: 18px;
  top: 8px;
  left: 0;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: rgba(0, 0, 0, 0.65);
}
input[type="checkbox"]:checked + label::after {
  max-width: 23px;
  opacity: 1;
  width: 23px;
}
input[type="checkbox"]:checked + label {
  color: rgba(0, 0, 0, 0.5);
}

/* FILE */
input[type="file"]#file {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

/* BTN */
.submitbtn {
  background: red;
  padding: 8px 100px;
}
.submitbtn:not([disabled]):hover {
  background: #7bf4d5;
}
.submitbtn:not([disabled]):hover,
.submitbtn,
.submitbtn[disabled] {
  color: #121126;
  text-transform: uppercase;
  font-size: 1.2em;
  font-weight: 600;
  letter-spacing: 3px;
  margin-top: 9px;
}

/*
placeholder: rgba(0,0,0,.4);
color :#333;
color active: #fff;
btn: #0077FF;
btn: hover #004FAA;
PRELOAD: http://www.uch.edu.pe/sites/default/files/loading.gif;
*/

.checklist .form-control p {
  padding: 0 0 0 3px;
  height: auto;
  font-size: 14px;
  font-weight: 600;
}
.checklist.active input.form-control {
  display: none;
}
.checklist input.form-control + div + .borderRadius + span {
  display: none;
}
.checklist input.form-control:focus + div + .borderRadius + span,
.checklist input.form-control:valid + div + .borderRadius + span,
.checklist.active input.form-control + div + .borderRadius + span {
  display: block;
}

.checklist input[type="checkbox"] + label:after {
  font-size: 16px;
  top: 8px;
  left: 4px;
}

#respuesta {
  position: relative;
}
#segundos {
  right: 0;
  left: 0;
  padding-top: 12px;
  margin: auto;
  position: absolute;
  text-align: center;
}

.correotemp {
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 1;
  top: 15px;
  left: 17px;
}
.correotemp .user {
  color: transparent;
}
.correotemp .servidor {
  color: blue;
  font-size: 16px;
  font-weight: 600;
}
input[name="mailUCH"] {
  z-index: 2;
}
