body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 17px;
	line-height: 1.6;
}

.button{
	background: coral;
	padding: 1em 2em;
	color: #fff;
	border: 0;
	border-radius: 5px;
}

.button: hover{
	background: #333;
}

.footerButton {
	background: #EDCBB1;
	padding: 1em 2em;
	color: black;
	border: 0;
	border-radius: 5px;
	width: auto;
	margin: 1em 2em;
}

.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.5);
}

.modal-content {
	background-color:#f4f4f4;
	margin: 20% auto;
	width: 70%;
	box-shadow: 0 5px 8px 0 rgba(0,0,0,0.2), 0 7px 20px 0 rgba(0,0,0,0.17);
	animation-name:modalopen;
	animation-duration:1s;

}

modal-header h2, .modal-footer h3 {
	margin: 0;
}

.modal-header {
	background: #002500;
	padding: 15px;
	color:#fff;
	line-height: 1.0;
	text-align: center;
}

.modal-body {
	padding:10px 20px;
}

.modal-footer {
	background: #7C3238;
	padding: 10px;
	color:#fff;
	text-align: center;
}

.closeBtn{
	color:#ccc;
	float: right;
	font-size:30px;
	color: #fff;
}

.closeBtn:hover, .closeBtn: focus {
	color:#000;
	text-decoration: none;
	cursor: pointer;
}

@keyframes modalopen{
	from{opacity: 0}
	to{opacity: 1}
}

/* 
label {
	display: block;
	position: relative;
}

label span {
	position: absolute;
	left: 10px;
}

label input {
	margin-left: 120px;
}
 */

.buttonContainer {
	overflow: auto;
	padding: 10px;
	margin: 0 auto;
}

.buttonContainer:before {
	height: 100%;
	margin: 0 auto;
}

.email-login-button, .fb-login-button, .google-login-button, .no-login-button {
	margin: 0 auto;
	display: table;
	padding: 5px;
}

#center {
	margin: 0 auto;
	text-align: center;
}

.EmailLoginBtn, .NoLoginBtn {
	height: 40px;
	width: 240px;
	background-color: maroon;
	border: none; /* Remove borders */
	color: white; /* White text */
	padding: 12px 12px; /* Some padding */
	font-size: 16px; /* Set a font size */
	cursor: pointer; /* Mouse pointer on hover */	
	border-radius: 5px;		
}

.NoLoginBtn {
	background-color: yellow;
	color: black; /*text*/
	border: 1px solid lightgray;
}


#envelopeIcon {
	float: left;
}
