body{
  margin: 0;
  padding: 0;
  background: url("../imagen/fond.jpg");
  background-size: cover;
  font-family: "calibri";
}
.login{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: rgba(0,0,0,.5);
  width: 381px;
  height: 500px;
  padding: 80px 40px;
  box-sizing: border-box;
}
.user{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: calc(-100px/2);
  left: calc(50% - 50px);
}
h2{
  margin: 0;
  padding: 0 0 20px;
  color: #efed40;
  text-align: center;
}
.login p{
  margin: 0;
  padding: 0;
  font-weight: bold;
  color: #fff;
}
.login input{
  width: 100%;
  margin-bottom: 20px;
}
.login input[type="text"],
.login input[type="password"]{
  border: none;
  border-bottom: 1px solid #fff;
  background: transparent;
  outline: none;
  height: 40px;
  color: #fff;
  font-size: 16px;
}
::placeholder{
  color: rgba(255,255,255,.5);
}
.login input[type="submit"]{
  border: none;
  outline: none;
  height: 40px;
  color: #fff;
  font-size: 16px;
  background: #ff267e;
  cursor: pointer;
  border-radius:20px;
}
.login input[type="submit"]:hover{
  background: #efed40;
  color: #262626;
  transition: .7s ease;
}
.login a{
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}
.recaptcha{
    padding: 5px;
    background: yellow;
    color: #0279cc;
    text-align: center;
    font-size: 20px;
    font-style: oblique;
}
.fallo{
    padding: 5px;
    background: red;
    color: #efed40;
    text-align: center;
    font-size: 20px;
}