* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Arial", sans-serif;
}


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
a{
    text-decoration: none;
    
    color: white;
}





/* Navigation bar styling */
/* .nav {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.6);
	padding: 10px;
	border-radius: 10px;
    position: sticky;
} */

/* Navigation list styling */
.ullist {
	list-style-type: none;
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 0;
	margin: 0;
	font-size: 18px;
	z-index: 100;
}

/* Style for buttons in the nav */
.ullist button {
	background: none;
	border: none;
	font-size: 16px;
	cursor: pointer;
	transition: color 0.3s ease, background-color 0.3s ease,
		box-shadow 0.3s ease;
	color: antiquewhite;
	padding: 5px 10px;
	border-radius: 5px;
	position: relative;
}

/* Hover effect for buttons with glowing background */
.ullist button:hover {
	background-color: rgba(255, 255, 255, 0.2);
	color: #ececff;
	box-shadow: 0 0 10px #7aa6d5, 0 0 20px #7baadc, 0 0 30px #86b9f0;
}

/* Style for the search icon */
.search-icon {
	cursor: pointer;
	height: 24px;
	width: 24px;
	margin-left: 10px;
	transition: transform 0.2s ease;
	stroke: antiquewhite;
}

/* Rotate search icon on hover */
.search-icon:hover {
	transform: rotate(20deg);
}

/* Style for the search bar */
.search-bar {
	padding: 7px 12px;
	border-radius: 20px;
	border: 1px solid #ddd;
	width: 200px;
	transition: width 0.3s ease, opacity 0.3s ease;
	display: none; /* Initially hidden */
	opacity: 0;
	background: #fff;
	color: #000;
	margin-left: 10px;
}

/* When the search bar is visible */
.search-bar.show {
	display: block;
	opacity: 1;
}



body {
    background-image: url("images/background.avif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    margin: 0;
	animation: fadeIn 0.5s forwards;
    padding: 0;
}

/* Add these styles for the main content */
.container {
    margin: 20px auto;  /* Centers horizontally with auto margins */
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.2);
    width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

/* Update the nav styles */
.nav {
    display: flex;
	justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 10px;
    position: sticky;
    top: 0;
    z-index: 1000;
    margin: 0 10px;  /* Add some margin on the sides */
}

h2 {
	font-size: 22px;
	margin: 20px 0;
	color: #30113a; /* Use the base color */
}

/* New styles for the website name */
.website-name {
	text-align: center; /* Center the text horizontally */
	font-size: 48px; /* Increase the font size */
	margin: 20px 0; /* Add some vertical spacing */
	color: #30113a; /* Set the color to match your theme */
}

.form-row {
	display: flex; /* Use flexbox for horizontal layout */
	justify-content: space-between; /* Space between fields */
	margin-bottom: 15px; /* Space between rows */
}

.form-group {
	flex: 1; /* Allow form groups to take equal space */
	margin-right: 10px; /* Space between groups */
}

.form-group:last-child {
	margin-right: 0; /* Remove margin for the last group in the row */
}

label {
	font-size: 16px;
	color: #30113a; /* Base color */
	display: block;
	margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="url"],
select,
textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 14px;
	transition: border 0.3s; /* Transition for input focus */
}

input:focus,
select:focus,
textarea:focus {
	border: 1px solid #30113a; /* Highlight border on focus */
	outline: none; /* Remove default outline */
}

button {
	background-color: #30113a; /* Use the base color */
	color: white;
	border: none;
	padding: 15px 20px;
	border-radius: 5px;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s; /* Transition for button hover */
}

button:hover {
	background-color: #4a244e; /* Darker shade on hover */
}

@media (max-width: 650px) {
	.container {
		width: 90%; /* Make container responsive on smaller screens */
		padding: 20px; /* Adjust padding for smaller screens */
	}
}
a {
	text-decoration: none;
  }
  
  a:hover {
	text-decoration: underline;
  }
  
  section a {
	color: rgb(255, 255, 255);
  }
  
  .already-account {
	color: rgb(255, 255, 255);
	font-size: 14px;
	font-weight: 500;
  }
  
  .input-submit {
	position: relative;
  }
  
  .submit-btn {
	width: 100%;
	height: 60px;
	background: #222;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	transition: 0.3s;
  }
  
  
  /* Add these styles to your CSS file */
  .close-btn {
	position: absolute;
	top: 15px;
	right: 15px;
	background: none;
	border: none;
	color: white;
	font-size: 24px;
	cursor: pointer;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
  }
  
  .close-btn:hover {
	background-color: rgba(255, 255, 255, 0.2);
	transform: scale(1.1);
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  }
  
  /* Add this to ensure proper positioning */
  .login-box {
	position: relative;
	/* ... rest of existing login-box styles ... */
  }
  
  .input-submit label {
	position: absolute;
	top: 45%;
	left: 50%;
	color: #fff;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	cursor: pointer;
  }
  
  .submit-btn:hover {
	background: #000;
	transform: scale(1.05, 1);
  }
  
  .sign-up-link {
	text-align: center;
	font-size: 15px;
	margin-top: 20px;
  }
  
  .sign-up-link a {
	color: #000;
	font-weight: 600;
  }
  footer {
	height: 50px;
	width: 100%;
	color: #ffffff;
	position: fixed;
	bottom: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	background-color: rgba(0, 0, 0, 0.3);
	text-align: center;
	font-size: 14px;
	border-top: 1px solid #333;
	z-index: 1000;
  }