body{
    margin:0;
    padding:0;
    /* background: url({{ url_for('static', filename='login1.jpg') }}); */
    background: url(../images/login1.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    
}

.loginbox{
    width:	320px;
    height:	420px;
    background:	#000;
    color:	#ffff;
    top:	50%;
    left:	50%;
    position: absolute;
    transform:	translate(-50%,-50%);
    box-sizing:	border-box;
    opacity: 0.8;
    
}
.avatar{
    width:	100px;
    height:	100px;
    background:	rgb(218, 255, 250);
    border-radius:	50%;
    top:	-50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.loginbox h1{
    margin:	0;
    padding:	0	0	20px;
    text-align:	Center;
    font-size:	22px;
}

.loginbox	p{
    margin:	0;
    padding:	0;
    font-weight:	bold;
}

.loginbox	input{
    width:	100%;
    margin-bottom:	20px;
}

.loginbox	input[type="text"],	input[type="password"]
{
    border:	none;
    border-bottom:	1px	solid	#fff;
    background:	transparent;
    outline:	40px;
    color:	#fff;
    font-size:	16px;
}

.loginbox	input[type="Submit"]
{
    border:	none;
    outline:	none;
    height:		40px;
    background:	#fb2525;
    color:	#fff;
    font-size:	18px;
    border-radius:	20px;
    
}

.loginbox	input[type="Submit"]:hover
{
    cursor:	pointer;
    background:	#ffc107;
    
}