*{
Margin: 0;
Padding: 0;
}

/* html,body
{
	height: 100%;
	line-height: normal;
} */

body {
	display: grid;
	grid-template-rows: repeat(3, max-content) auto 50px;
	grid-template-areas:
	"header"
	"loginmenu"
	"registerlabel"
	"indexbody"
	"footer"
	;
	background-color: antiquewhite;
}

#registerlabel{
	grid-area: registerlabel;
	width:max-content;
	justify-self: center;
	font-weight: bold;
	font-size: 25px;
	margin-top: 45px;
}

#backgroundimage{
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	opacity: .1;
	z-index: -1;
}

fieldset{
	border: 2px solid black;
	border-radius: 5px;
	background-color: var(--colord2a679);
}

#indexbody{
	grid-area: indexbody;
	margin-top: 20px;
	display: grid;
	height: max-content;

}

.co_name{
	padding-left: 15px;
}

legend{
	padding: 0px;
  	margin: 0px;
	margin-bottom:5px;
	font-size: 25px;
	font-weight: bold;
	color: black;
}

#forgotgrid{
	width: max-content;
	margin-left: auto;
	margin-right: auto;
}

#forgotform{
	display: grid;
	grid-template-rows: repeat(4, max-content);
	grid-template-areas:
	"profilesection"
	"emailsection"
	"message"
	"button"
	;
	grid-gap: 25px;
	width: max-content;
	padding: 15px;
	justify-content: center;
}

#profilesection{
	grid-area: profilesection;
}

#emailsection{
	grid-area: emailsection;
	justify-self: center;
}

#fmessage{
	grid-area: message;
	color: black;
	font-size: 15px;
	font-style: italic;
	width: max-content;
	height: max-content;
	justify-self: center;
}
#submitbtn{
	grid-area: button;
	background-color: white;
}

.inputgroup{
	width: 100%;
	height: max-content;

	display: grid;
	grid-template-rows: repeat(3, max-content);
	grid-template-areas: 
	"inputentry"
	"inputlabel"
	"emailmessage"
	;
}

#emailid{
	grid-area: inputentry;
	font-size: 17px;
	grid-area: inputentry;
	border-radius: 5px;
	font-weight: bold;
	padding-left: 5px;
	padding-right: 5px
}

#emaillabel{
	grid-area: inputlabel;
}

#emailmessage{
	grid-area: emailmessage;
}

#emailid, .inputlabel{
	width: 350px;
	height: 35px;
} 

.inputlabel{
	grid-area: inputlabel;
	color: black;
	font-size: 16px;
	text-align: center;
	text-align: center;
	font-style: italic;
}

.login:hover{
	/*background-color: #CFB53B;*/
	color: #CFB53B;
	font-weight: bold;
	background-color: white;
}

.allbuttons
{
	color:  var(--color996633);
	width: 250px;
	height: 30px;
	margin-bottom: 10px;
	text-align: center;
	cursor: pointer;
	border-radius: 15px;
}

.submit:hover
{
	background-color: transparent;
	border-color: white;
	border: 1px solid;
	color:var(--oldGold);
}

.enterBtn{
	display: block;
	margin: 0 auto;
}

#notmember{
	width: max-content;
	height: max-content;
	padding: 10px;
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
}

.signuptext{
	font-size: 20px;
	color: blue;
	text-align: center;
	width: max-content;
	height: max-content;
	padding: 10px;
}

.signuptext:hover
{
	/* background-color: transparent; */
	/* border-color: white; */
	/* border: 1px solid; */
	font-weight: bold;
	color:var(--color996633);
}

::-webkit-input-placeholder {
	text-align: center;
}

.inputerror::-webkit-input-placeholder {
    color:blue;
	/* opacity: 1; */
 }

 #emailmessage{
	color:red;
	font-size: 15px;
	font-weight: bold;
	text-decoration: underline;
	text-align: center;
 }


#forgot:hover{font-size: 15px; color: blue; font-weight: bold;}
.allbuttons:hover{font-size: 15px; color: blue; font-weight: bold; }


@media screen and (max-width: 400px) {
	#registerlabel{
		font-size: 20px !important;
	}
}