body{
  background: url(../img/pizarra.png) center center no-repeat;
}
body,
.signin {
  font-family: 'montserrat', sans-serif;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
}
.login {
  position: relative;
  height: 560px;
  width: 400px;
  margin: auto;
  padding: 100px 40px;
}
form {
  padding-top: 30px;
}
.active {
  border-bottom: 2px solid #ff7f27;
  text-transform: uppercase;
  color:#fff;
}

.nonactive {
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
}

h3 { 
  margin-left: 20px;
  display: inline-block;
  position: relative;
  color: #DAE9B9;
}
h4 { 
  margin-left: 20px;
  color: #FD99A5;
}
a {
  font-size: 22px;
  letter-spacing: 2px;
  padding-bottom: 5px;
  display: inline-block;
  font-weight: 100;
  text-decoration: none;
}
span {
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.4; 
  display: inline-block;
  position: relative;
  top: 7px;
  transition: all 0.5s ease-in-out;
}
.text {
  border: none;
  width: 89%;
  padding: 10px 20px;
  display: block;
  height: 15px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0);
  overflow: hidden;
  margin-top: 15px;
  transition: all 0.5s ease-in-out;
}
.text:focus {
  outline: 0;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0);
}
.text:focus + span {
  opacity: 0.6;
}
input[type="text"],input[type="email"],
input[type="password"], select {
  font-family: 'montserrat', sans-serif;
  color: #fff;
}
input {
  display: inline-block;
  padding-top: 20px;
  font-size: 14px;
}

label {
  display: inline-block;
  padding-top: 10px;
  padding-left: 5px;
}

.signin {
  background-color: #ff7f27;
  color: #FFF;
  width: 100%;
  padding: 10px 20px;
  display: block;
  height: 39px;
  border-radius: 20px;
  margin-top: 30px;
  transition: all 0.5s ease-in-out;
  border: none;
  text-transform: uppercase;
}

.signin:hover {
  background: #ff8a3c;
  box-shadow: 0px 4px 35px -5px #ff8a3c;
  cursor: pointer;
}

.signin:focus {
  outline: none;
}

hr {
  border: 1px solid rgba(255, 255, 255, 0.1);
  top: 85px;
  position: relative;
}

.olvido a {
  text-align: center;
  letter-spacing: 1px;
  font-size: 14px;
  display: block;
  top: 120px;
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.2);
}


.select {
  border: none;
  margin-top: 15px;
  position: relative;
  display: inline-block;          
  width: 100%;
}    
.select select {
  font-size: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0);
  display: inline-block;
  width: 99%;
  cursor: pointer;
  padding: 10px 20px;
  outline: 0;
  border: 0px solid #000000;
  border-radius: 20px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.5s ease-in-out;
}
.select select::-ms-expand {
  display: none;
}
.select select:focus, .select select:hover  {
  background: #ff7f27;
}
.select_arrow {
  position: absolute;
  top: 12px;
  right: 19px;
  width: 0px;
  height: 0px;
  border: solid #7b7b7b;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.select select:hover ~ .select_arrow,
.select select:focus ~ .select_arrow {
  border-color: #fff;
}
.select select:disabled ~ .select_arrow {
  border-top-color: #cccccc;
}
.select select:focus + span {
  opacity: 0.6;
}