html, body {
	padding: 0;
	margin: 0;
	font-family: 'Open Sans', sans-serif;
}
img{
	display: block;
	width: 100%;
}
.header-logo{
	width: 500px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10%;
}

.login-form-wrapper{
	width: 500px;
	margin-left: auto;
	margin-right: auto;
}
.login-form label{
	text-align: left;
	    display: block;
	margin: 0 auto 0px auto;
	width: calc(70% - 0px);
}
.login-form input{
	float: none;
    border-radius: 2px;
    font-weight: 400;
    outline: none;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: none;
    transition: all .2s ease-out;
    box-shadow: none;
    text-indent: 5px;
    width: calc(70% - 20px);
    line-height: 18px;
    border: 1px solid #ccc;
    background: #FFF;
    margin:0 auto 0 auto;
    padding: 10px;
    position: relative;
	    display: block;
}
.layout-row{
	width: 100%;
	position: relative;

}

.button{
	width: 130px;
	display: block;
	float: left;
	border-radius: 2px;
	background: #6bc402;
	color: #ffffff;
	border: 1px solid #191919;
	cursor: pointer;
	padding: 8px 12px 8px 12px;
	text-align: center;
	margin: 10px 0px 0px 15%;
	transition: all .3s;
	
}
.button:hover {
	background: #7bd80d;
	
}