﻿html, body, form {
	height: 100%;
}
/* Wrapper for page content to push down footer */

#wrap {
	min-height: 100%;
	height: auto !important;
	height: 100%;
	/* Negative indent footer by it's height */
	margin: 0 auto -60px;
}
/* Set the fixed height of the footer here */

#push, #footer {
	height: 60px;
	color: #808080;
}
/* Lastly, apply responsive CSS fixes as necessary */

@media (max-width: 767px) {
	#footer {
		margin-left: -20px;
		margin-right: -20px;
		padding-left: 20px;
		padding-right: 20px;
	}
}


.button {
    display: inline-block;
    border-radius: 4px;
    background-color: #f4511e;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 28px;
    padding: 20px;
    width: 300px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}

    .button span {
        cursor: pointer;
        display: inline-block;
        position: relative;
        transition: 0.5s;
    }

        .button span:after {
            content: '\00bb';
            position: absolute;
            opacity: 0;
            top: 0;
            right: -20px;
            transition: 0.5s;
        }

    .button:hover span {
        padding-right: 25px;
    }

        .button:hover span:after {
            opacity: 1;
            right: 0;
        }

.header {
    width: 100%;
    background-color: #0099cc;
    height: 70px;
    text-align: center;
    color: yellow;
    font-size: 28px;
    font-family: 'Tahoma';
    padding: 10px;
}

.padded-footer {
	padding-top: 20px;
}
.logo {
	width: auto;
	height: 26px;
}
.top-bar {
	padding-top: 15px;
	padding-bottom: 15px;
}
/*LOGIN BOX STYLING*/

.login {
	position: relative;
	z-index: 1;
	background: #FFFFFF;
	width: 400px;
	margin: 100px auto 100px;
	padding: 45px;
	text-align: center;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
.login .login-textbox {
	outline: 0;
	background: #f2f2f2;
	width: 100%;
	border: 0;
	margin: 0 0 15px;
	padding: 15px;
	box-sizing: border-box;
	font-size: 14px;
}
.login .login-btn {
	text-transform: uppercase;
	outline: 0;
	width: 100%;
	padding: 15px;
	font-size: 14px;
	-webkit-transition: all 0.3 ease;
	transition: all 0.3 ease;
	cursor: pointer;
}
.login .message {
	margin: 15px 0 0;
	color: #808080;
	font-size: 12px;
}
.login .message a {
	color: #4e79a2;
	text-decoration: none;
}
/*Testing*/