@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Roboto');

body {
    margin: 0;
    padding: 0;
    background: url(imagen/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: 80px 40px;
    box-sizing: border-box;
    background: rgba(0,0,0,.5)
}
.user
{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: calc(-100px/2);
    left: calc(50% - 50px);
}
h2{
    margin-top: -0.8em;
    padding: 0 0 15px;
    font-size: 2em;
    color: antiquewhite;
    text-align: center;
    font-family:'roboto','sans-serif';
    
}

.loginbox p 
{
    margin:  0;
    padding: 0;
    font-weight: bold;
    color: darksalmon;
}
.loginbox input
{
    width: 100%;
    margin-bottom: 20px;
}

.loginbox input[type="text"],
.loginbox 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);
}
.loginbox input[type="submit"]
{
    border: none;
    outline: none;
    height: 40px;
    color: #fff;
    font-size: 16px;
    background: crimson;
    cursor: pointer;
    border-radius: 20px;
}
.loginbox input[type="submit"]:hover
{
    background: #efed40;
    color: #262626;
}
.loginbox a
{
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}



@media (min-width:30rem){ 
}

    