body{
margin: 0;
height: 100%;
box-sizing: border-box;
background-color: black;
position: relative;
color: white;
}
#bg{
width: 100%;
height: 100%;
background-image: url(bg.jpg);
background-size: auto 100%;
background-position:10% center;
background-repeat: no-repeat;
filter: blur(10px);
}
main{
position: absolute;
top: 0;
left: 0;
width: 100%;
text-align: center;
}
header{
margin-bottom: 5rem;
}
header span:nth-child(1){
float: left;
position: relative;
top: 1rem;
left: 1rem;
}
header span:nth-child(2){
position: relative;
top: 1rem;
}
header span:nth-child(3){
float: right;
position: relative;
top: 1rem;
right: 1rem;
}
#head{
width: 15%;
max-width: 200px;
border-radius: 50%;
}
#account,#password{
width: 70%;
margin: 3rem auto;
border-bottom: 2px solid lightgray;
text-align: left;
padding-bottom: 0.5rem;
font-size: 1.2rem;
}
#password span:nth-child(2){
letter-spacing: 0.3rem;
}
#login{
width: 70%;
line-height: 4rem;
margin: 2rem auto;
background-color: green;
border-radius: 10px;
font-size: 1.3rem;
}
footer img{
width: 4rem;
}