body{
    margin: 0;
    padding: 0;
    background: url(login-bg.jpg);
    background-size: cover;
    background-position: center;
    font-family: sans-serif;
}
.loginbox{
    width: 350px;
    height: 330px;
    background-color: rgba(255,255,255,0.7);
    /*background: #000;*/
    color: #000;
    margin-top: 200px;
    left: 50%;
    position: relative;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 40px 30px;
    padding-bottom: 50px;
	box-shadow:0px 2px 2px rgb(0 0 0 / 30%);
	border-radius: 3px;
	border:1px solid rgb(0,0,0,.125);
}
.loginbox-signup{
    width: 100%;
    height: 700px;
    /*background-color: rgba(255,255,255,0.7);
    /*background: #000;*/
    color: #000;
    margin-top: 250px;
    left: 50%;
    position: relative;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 20px 10px;
   /* padding-bottom: 50px;*/
	/*box-shadow:0px 2px 2px rgb(0 0 0 / 30%);*/
	border-radius: 3px;
	/*border:1px solid rgb(0,0,0,.125);*/
}
.avatar{
    width: 230px;
    height: :100px;
    border-radius: :50%;
    position: absolute;
    top: -50px;
    left: calc(50% - 50px);
}
h1{
    margin: 0;
    padding: 0;
    font-size: 22px;
    padding: 0 0 20px;
    text-align: center;
}
.loginbox p{
    margin: 0;
    padding: 0;
    font-weight: bold;
}
.loginbox-signup p{
    margin: 0;
    padding: 0;
    font-weight: bold;
}
.loginbox input{
    width: 100%;
    margin-bottom: 20px;
    border-radius:3px;
}
.loginbox-signup input{
   /* width: 100%;
    /*margin-bottom: 20px;*/
    border-radius:3px;
}
.loginbox input[type="text"], input[type="password"]
{
    border: none;
    border-bottom: 1px solid #fff;
    background: #f1f1f1;
    outline: none;
    height: 44px;
    color: #000000;
    font-size: 16px;
    border-radius:3px;
}
.loginbox-signup input[type="text"], input[type="password"], input[type="repeat-password"]
{
    border: none;
    /*border-bottom: 1px solid #fff;*/
    background: #ffff;
    outline: none;
    height: 45px;
    color: #000000;
    font-size: 16px;
    border-radius:3px;
}
.loginbox input[type="submit"]
{   border: none;
    outline: none;
    height: 40px;
    background:#fb2525;
    color: :#000000;
    font-size: 18px;
    border-radius:3px;
}
.loginbox-signup input[type="submit"]
{   border: none;
    outline: none;
    height: 40px;
    background:#fb2525;
    color: :#000000;
    font-size: 18px;
    border-radius:3px;
	width:70%;
}
.loginbox input[type="submit"]:hover
{
    cursor: pointer;
    background: #ffc108;
    color: #000;
}
.loginbox-signup input[type="submit"]:hover
{
    cursor: pointer;
    background: #ffc108;
    color: #000;
}
.loginbox a {
    text-decoration: none;
    font-size: 15px;
    line-height: 20px;
    /*color: darkgray;*/
}
.loginbox-signup a {
    text-decoration: none;
    font-size: 15px;
    line-height: 20px;
    /*color: darkgray;*/
}
.loginbox a:hover{
    color: #337ab7;
}
.loginbox-signup a:hover{
    color: #337ab7;
}