@charset "UTF-8";


/* General + Layout */ 

body  
{
	background: #000;
	margin: 0;
	padding: 0;
	color: #666;
}


/* Sign In Form */

#sign-in-pop
{
	display: block;
	position: fixed;
    overflow: hidden;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    text-align: center;
}

#sign-in-pop,
#sign-in-pop a,
#sign-in-pop a.visted
{
    font-family: 'VT323', helvetica;
    font-size: 28px;
    color: #46fc3e;
}

#sign-in-pop a:hover
{
    color: #fff;
}

#sign-in-pop .close 
{
	float: right;
	padding: 10px 20px;
}

#sign-in-pop input 
{
    font-family: 'VT323', Helvetica;
    color: #46fc3e;
    border: 0;
    border-bottom: 1px solid #46fc3e;
    font-size: inherit;
    background: #000;
	-webkit-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
    border-radius: 0;
    margin: 0 5px 0 0;
    padding: 0;
    outline: none;
}

#sign-in-pop input.btn 
{
    border: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
    border-radius: 0;
}

#sign-in-pop input.btn:hover
{
    color: #fff;
}

#enter-password-block 
{
	position: fixed;
	height: 100%;
	width: 86%;
	padding: 0 7%;
	text-align: center;
	top: 33%;
    line-height: 50px;
}

.nobr 
{
	white-space: nowrap;
}

a 
{
	text-decoration: none;
}

.error 
{
	display: block;
	margin: 2em 0 0 0;
}



/* 350 - 450 */
@media all and (max-width: 449px) and (min-width: 350px) {
	#sign-in-pop { 
        font-size: 24px; 
        line-height: 32px;
    }
}

/* < 350 */
@media all and (max-width: 349px) {
	#sign-in-pop { 
        font-size: 22px; 
    }
}