#loginForm
{
    clear: both;
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    display: block;
    text-align: center;
}

#loginForm input
{
    float: left;
    padding: 10px;
    margin: 0px;
    width: 35%;
    display: inline-block;
    font-size: 25px;
    height: 100px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    line-height: 100px;
    background: #e7e8e8;
    color: #65666a;
    font-weight: 600;
}

#loginForm .loginBtn
{
    transition: background-color 0.3s ease;
    padding: 0px;
    margin: 0px;
    width: 30%;
    font-size: 25px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    color: e7e8e8;
    height: 100px;
    background: #3A3A3A;
    line-height: 100px;
    text-align: center;
    display: inline-block;
    position: relative;
    clear: both;
    text-align: center;
    font-weight: 600;
}

#loginForm .loginBtn.active
{
    background: #f26122;
}

.arrow-right
{
    width: 13px;
    float: right;
    margin-top: 40px;
    margin-right: 30px;
}

#loginInstructions
{
    margin: 0px auto;
    max-width: 600px;
    text-align: center;
    padding: 20px;
    font-size: 25px;
    line-height: 30px;
    color: #9E9E9E;
    font-weight: 600;
	height:400px;
}