*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-optical-sizing: auto;
}
nav{
	width: 100%;
	padding: 40px 50px;
	display: flex;
	background-color: black;
}
.logo h1{
	font-size: 27px;
	color: gold;
	text-align: center;
	background-color: black;
	padding: 30px;
}
ul{
	list-style: none;
	display: flex;
	gap: 1rem;
	max-width: 100%;
	margin: 0 auto;
}
li a{
	color: gold; 
	font-weight: 600;
	border: none;
	padding: 15px 20px;   
	transition: all 0.3s ease;
}
li a:hover{
	color: white;
	border-color: white;
}
.active{
	color: white;
	border-color: white;
}
.container{
	max-width: 100%;
	margin: 0 auto;
}
.wrapper{
	text-align: center;
	padding: 20px;
	max-width: 50%;
	margin: 0 auto;
}
form {
	display: flex;
	flex-direction: column;
}
h2{
	color: darkred;
	margin-bottom: 25px;
}
.input-field {
	position: relative;
	margin: 20px 0;
}
.input-field label{
	position: absolute;
	top: 50x;
	left: 0;
	transform: translateY(-50%);
}
.input-field input {
	width: 60%;
	height: 40px;
	background: transparent;
}
.input-field input:focus~label,
.input-field input:valid~label { 
	font-size: 0.9rem;
	top: 10px;
	transform: translateY(-150%) ;
	color: black;
}
#remember {
	accent-color: black;
}
.forget {
	margin: 35px 0;
	font-size: 0.85rem;
	color: black;
	display: flex;
	justify-content: space-between;
}
.forget label {
	display: flex;
	align-items: center;

}
.forget label input {
	margin-right: 3px;
}
.forget a {
	color: red;
	font-weight: 600;
}
.register a {
	color: red;
}
button {
	background-color:black;
	color: white; 
	font-weight: 600;
	border: none;
	padding: 15px 20px; 
	cursor: pointer; 
	border-radius: 25px; 
	font-size: 16px;
	border: 5px solid transparent; 
	transition: all 0.3s ease;
}
button:hover {
	color: black;
	background: rgba(255, 255, 255, 0.2); 
	border-color: black;
}
.register {
	text-align: center; 
	margin-top: 15px;
	color: black;
}
