body{
    margin: 0;
    padding: 0;
    background: url(media/fondo.jpg);
    background-size: cover;
    font-family: sans-serif;
}

.loginBox{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 350px;
    height: 420px;
    padding: 50px;
    border-radius: 10px;
    box-sizing: border-box;
    background: rgba(0,0,0,.5);
}

.user{
    width: 100px;
    height: 100px;
    border-radius: 10%;
    overflow: hidden;
    position: absolute;
    top: calc(-100px/2);
    left: calc(50% - 50px);
}

h4{
    margin: 0;
    padding: 10px 0 20px;
    color: black;
    text-align: center;
}

.loginBox label{
    margin: 0;
    padding: 0;
    font-weight: bold;
    color: #fff;
}

.loginBox input{
    width: 100%;
    margin-bottom: 20px;
}
/*
.loginBox input[type="text"],
.loginBox input[type="password"]{
    border: none;
    border: 1px solid #fff;
    background: transparent;
    outline: none;
    height: 40px;
    color: #fff;
    font-size: 16px;
}*/

.campo{
  width: 100% !important;
  padding-top: 3px !important;
  padding-left: 5px !important;
  padding-bottom: 3px !important;
  font-size: 14px !important;
  margin-top: 3px;
}

::placeholder{
    color: rgba(255,255,255,.5);
}

.loginBox input[type="submit"]{
    border: none;
    outline: none;
    height: 40px;
    color: black;
    font-size: 16px;
    background: #efed40;
    color: #262626;
    cursor: pointer;
    border-radius: 10px;
    font-weight: bold;
    width: 100% !important;
}

.loginBox input[type="submit"]:hover{
    background: #0D89DB;
    color: #262626;
}

.loginBox a{
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}