body {
	margin: 0;
	font-family: "Open Sans", helvetica, arial;
}
body p {
	color: red;
}
/*===========
 Login button
===========*/
header {
	padding: 10px;
	background-image: url(../img/painter.jpg);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	height: 400px;
}
.login_button {
	display: inline-block;
	float: right;
}
.login_button p {
	padding: 10px 20px;
	margin: 0;
	background: transparent;
	border-radius: 5px;
	display: inline-block;
	color: #fff;
	cursor: pointer;
	border: 2px solid #fff;
	transition: background .2s ease-in-out;
}
.login_button p:hover {
	background: #27ae60;
}
.nav {
	position: relative;
}
.sign_in {
	position: absolute;
	width: 200px;
    right: 0;
    top: 60px;
    background: #fff;
    padding: 10px;
    visibility:hidden;
}
.sign_in.open {
	visibility: visible;
}
.sign_in input {
	width: 100%;
	height: 40px;
	margin-bottom: 10px;
	border: 0;
	border-bottom: 1px solid #797979;
	box-shadow: none;
	padding: 10px;
}
.sign_in input:focus {
	box-shadow: none;
	border: 0;
	border-bottom: 1px solid #00b6f0;
	outline: none;
}
.sign_in:before {
    position: absolute;
    right: 25px;
    top: -10px;
    background: TRANSPARENT;
    content: " ";
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #FFF;
}
.sign_in a {
	text-align: right;
	display: block;
	text-decoration: none;
	color: #000;
}
.login_buttons button {
    border-radius: 15px;
    padding: 10px 20px;
    display: inline-block;
    background: #00b6f0;
    border: 0;
    box-shadow: none;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    width: 87px;
    margin-left: 5px;
    margin-right: 5px;
}
.login_buttons button:hover {
	background: #27ae60;
}
.login_buttons button.login_cancel {
	background: #ababab;
	    color: #222;
}
.login_buttons {
	margin-top: 10px;
	margin-bottom: 10px;
}
.sign_in form {
	margin-bottom: 0;
}