div#main {
    background: #303239;
	background-color: #303239;
    color: #fff;
}

#wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
}

div#main h1 {
    font-size: 50px;
    margin-bottom: 0px;
    font-weight: 600;
}

.password-protected-form-box {
	text-align: center;
}

.password-protected-form-box label[for=password]{
    font-size: 18px;
	margin-top: 30px;
    margin-bottom: 15px;
}

.password-protected-form-box input[type=password]{
	height: 35px;
	padding: 5px 10px;
	width: 320px;
	font-size: 16px;
	border: 0;
}

.password-protected-form-box button[type=submit]{
	background: #ffaf4d;
    background: -moz-linear-gradient(left,rgba(255,175,77,1) 0%,rgba(255,76,103,1) 100%);
    background: -webkit-linear-gradient(left,rgba(255,175,77,1) 0%,rgba(255,76,103,1) 100%);
    background: linear-gradient(to right,rgba(255,175,77,1) 0%,rgba(255,76,103,1) 100%);
    color: #fff;
	width: 340px;
	height: 45px;
	font-size: 20px;
	padding: 0;
	border: 0;
	transition: none;
}

@media (max-width: 728px) {
	.password-protected-form-box button[type=submit] {
		width: 280px;
	}
	.password-protected-form-box input[type=password] {
		width: 260px;
	}
}
