/* CSS Document */

.light-box-close {
	position: absolute;
	top: 4px;
	right: 4px;
}

.top-light-box {
	position: fixed;
	top: 1%;
	left: 1%;
	width: 98%;
	height: 98%;
	background-color: rgba(255,255,255,0.80);
	z-index: 8550;
	display: none;
	border-radius: 10px;
}

.top-light-box h1{
    margin: 0;
    padding: 0 0 20px;
    text-align: center;
    font-size: 22px;
}

.loginbox{
    width: 40%;
    height: auto;
    background: #000;
    color: #fff;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%,-50%);
    box-sizing: border-box;
    padding: 70px 30px;
	border-radius: 10px;
}

.avatar{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    top: -50px;
    left: calc(50% - 50px);
}

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

.loginbox input,textarea{
	width: 60%;
	transition: 0s all;
}

.loginbox input[type="text"], input[type="password"], input[type="email"],textarea
{
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    outline: none;
    height: 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;
	display: block;
}

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