@charset "utf-8";
/* CSS Document */

.botCheck {
	display: none;
}

.MemberTitle-Container {
	margin: 0px;
	padding-top: 20px;
	text-align: center;
}
.MemberTitle-Container h2, .MemberTitle-Container h3 {
	margin-top: 0px;
	padding-top: 0px;
	padding-bottom: 10px;
	color: #387538;
}

.addMember-Form, .checkMember-Form {
	display: flex;
	flex-direction: column;
	background-color: blanchedalmond;
	border: 6px ridge #387538;
	border-radius: 10px;
	width: 35%;
	margin: 0px auto 20px;
	padding: 20px 25px;
}
.addMember-Form label, .checkMember-Form label {
	padding-bottom: 5px;
}
.addMember-Form input, .addMember-Form select, .checkMember-Form input {
	margin-bottom: 15px;
	padding: 10px 15px;
	border: thin solid #387538;
	border-radius: 15px;
}
.addMember-Form h3, .addMember-Form p {
	margin: 0px;
	padding-bottom: 10px;
}
.addMember-Form h3 {
	color: #387538;
}
.VOTD, .textVOTD, .PRIVACY {
	margin: 0px;
}
.PRIVACY a {
	color: #387538;
}

.addMember-Form input[type=submit], .checkMember-Form button {
	background-color: aliceblue;
	border: 4px double #387538;
	border-radius: 15px;
	width: 50%;
	margin-top: 10px;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: bold;
	color: #387538;
	cursor: pointer;
}

.tooltip {
    position: relative;
    display: inline-block;
}
.tooltip .tooltiptext {
	display: none;
    width: 275px;
    background-color: antiquewhite;
    color: #387538;
    font-size: 14px;
    font-weight: normal;
    text-align: justify;
	border: thin solid #387538;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
}
.tooltip:hover .tooltiptext {
    display: block;
}

@media (max-width: 1200px) {
	.addMember-Form {
		width: 75%;
	}
}

@media (max-width: 900px) {
	.addMember-Form {
		width: 85%;
	}
}









