body{
    margin: 0;
    padding: 0;
    background: url(./fondo02.jpg);
    background-size: cover;
    background-position: center;
    font-family: sans-serif;
}
.login-box{
    width: 420px;
    height: 520px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    top: 45%;
    left: 50%;
    position: absolute;
    transform: translate(-50%,-50%);
    box-sizing: border-box;
    padding: 50px 30px; /* margen de arriba caja */
}
.avatar{
    width: 203px;
    height: 63px;
    border-radius: 50%;
    position: absolute;
    top: 1px;
    left: calc(50% - 120px);
}
h1{
    margin: 0;
    padding: 0 0 20px;
    text-align: center;
    font-size: 18px;
}
.login-box p{
    margin: 0;
    padding: 0;
	margin-top: 20px;
    font-weight: bold;
}
.login-box input{
    width: 100%;
    /*margin-bottom: 20px;*/
}
.login-box input[type="text"], input[type="password"], input[type="email"]
{
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    outline: none;
    height: 40px;
    color: #fff;
    font-size: 14px;
	
}
.login-box input[type="checkbox"]
{
padding : 0px;
margin:0px;
font-size: 14px;
	
}
.login-box input[type="submit"],[type="button"]  
{
    border: none;
    outline: none;
    height: 40px;
    background: #1c8adb;
    color: #fff;
    font-size: 14px;
    border-radius: 20px;
}

.login-box input[type="submit"],[type="button"]:hover
{
    cursor: pointer;
    background: #39dc79;
    color: #000;
}

.login-box a{
    text-decoration: none;
    font-size: 14px;
    color: #fff;
}
.login-box a:hover
{
    color: #39dc79;
    /*color: #F5B041; narajin de bidon*/ 
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #B2BABB;
  opacity: 1; /* Firefox */
}




























































