html, body {
    background: #ececec;
    overflow-x: hidden;
    height: 100%;
    margin: 0;
    padding: 0;
}

.main {
    height: 100%;
    width: 100%;
    display: table;
}

.wrapper {
    display: table-cell;
    height: 100%;
    vertical-align: middle;
}

* {
    font-size: 16px;
	font-family: 'Nunito Sans', sans-serif;
    color: #4e5053;
}

#box {
	padding: 40px;
	background: #fff;
	width: 370px;
	margin: auto;
	border: 1px solid #cecece;
}

.hidden {
    display: none;
}

#invalid-credentials {
    color: red;
}



@media (max-width: 600px) {
    body {
        margin: 0 20px;
    }

    .wrapper {
        vertical-align: top;
    }

    #box {
        margin-top: 50px;
        width: inherit;
        padding: 0px;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

#header {
    text-align: center;
    margin: 0 0 30px 0;
}


h1 {
	font-size: 3em;
	font-weight: 800;
}

h2 {
    font-size: 2.5em;
    font-weight: 300;
}

h3 {
    font-size: 1.75em;
    font-weight: 300;
}

h4 {
    font-size: 1.25em;
    font-weight: 700;
}

form {
}

input {
    box-sizing: border-box;
    border: 0;
    border-bottom: 1px solid #eee;
    padding: 5px;
    margin: 10px 0;
    width: 100%;
}

button {
    background: #00A87D;
    padding: 9px 21px;
    border: 0;
    margin: 10px 0 0 0;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    font-size: 0.85em;
    -webkit-transition: all .28s cubic-bezier(0.4,0.0,0.2,1);
    -moz-transition: all .28s cubic-bezier(0.4,0.0,0.2,1);
    -o-transition: all .28s cubic-bezier(0.4,0.0,0.2,1);
    transition: all .28s cubic-bezier(0.4,0.0,0.2,1);
}

    button:hover {
		background-color: rgba(0, 143, 101, 1);
    	color: #fefefe;
        /*-webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
        box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);*/
    }

    button:disabled {
        opacity: 0.2;
        cursor: default;
    }

.two-column-container {
    margin-top: 20px;
    display: table;
    width: 100%;
}

    .two-column-container > * {
        width: 100%;
        display: table-cell;
        text-align: left;
    }

#terms-conditions-link {
    color: #00A87D;
    font-weight: 500;
    text-decoration: none;
    font-size: 1em;
}
#terms-conditions-link:hover {
    color: rgba(0, 143, 101, 1);
	text-decoration: underline;
}

