.signupcontainer {
	max-width: 1200px;
	margin: 0 auto;
	justify-content: space-between;
	position: relative;
	gap: 2rem;
	padding: 5rem 1.5rem;
}

.hero-container {
	background-color: rgb(240, 213, 134);
}

.circle {
	position: absolute;
	background-color: white;
	border-radius: 50%;
	opacity: 0.8;
}

.circle-1 {
	width: 300px;
	height: 300px;
	top: -50px;
	right: -50px;
}

.circle-2 {
	width: 400px;
	height: 400px;
	bottom: -100px;
	left: -100px;
}

h1 {
	font-size: 3rem;
	color: #333;
	margin-bottom: 1rem;
}

.subtitle {
	color: #666;
	line-height: 1.2;
	margin-bottom: 2rem;
	text-align: left;
	font-size: 0.99rem;
}

.form-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem 3rem;
	position: relative;
	z-index: 1;
}

.form-group {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

label {
	margin-bottom: 0.5rem;
	color: black;
}

input,
select,
textarea {
	padding: 0.8rem 1rem;
	/* border: 1px solid rgb(240, 213, 134); */

	background: white;
}

textarea {
	width: 100%;
	min-height: 100px;
}

.checkbox-group {
	align-items: center;
	gap: 0.5rem;
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.privacy-text {
	font-size: 0.9rem;
	color: #666;
	width: auto;
	line-height: 1;
}

.privacy-text a {
	color: #666;
	text-decoration: underline;
}

.signup-btn {
	background: #333;
	color: white;
	border: none;
	padding: 0.5rem 3rem;
	border-radius: 25px;
	font-size: 0.9rem;
	cursor: pointer;
}

input:focus,
select:focus,
textarea:focus {
	border-color: #f4a261;
	box-shadow: 0 0 5px rgba(244, 162, 97, 0.7);
	outline: none;
}

.formtext {
	width: 39%;
}

@media (max-width: 768px) {
	.form-container {
		grid-template-columns: 1fr;
		/* Stack fields vertically */
		gap: 1rem;
		/* Reduce spacing */
	}

}

/* 
input:focus,
select:focus,
textarea:focus {
	outline: 2px solid #333;
	border-color: #333;
} */

.signup-btn:hover {
	background: #555;
}



@media (max-width: 430px) {


	.signupcontainer {
		flex-wrap: wrap;
	}

	textarea#message {
		min-width: 300px;
		position: relative;
		left: 0 !important;
	}

	.form-group {

		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: unset;

	}
}



/*
   TNAHKS MODAL
 */


.thankyou-modal {
	max-width: 500px;
	margin: 50px auto;
	padding: 30px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	text-align: center;
	font-family: Arial, sans-serif;
	background-color: #ffffff;
}

/* Modal Overlay */
.modal-overlay {
	display: none;
	/* Hidden by default */
	position: fixed !important;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	justify-content: center;
	/* Align center */
	align-items: center;
	z-index: 1000;
	animation: fadeIn 0.3s ease-in-out;
}

.modal-overlay.active {
	display: flex;
	/* Show modal when active class is added */
}

/* Modal Content */
.modal-content-sign-up {
	background-color: #fff;
	padding: 2rem;
	font-size: 1rem;
	border-radius: 8px;
	max-width: 500px;
	text-align: center;
	position: relative;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Close Button */
.modal-close {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 2rem;
	cursor: pointer;
	background: none;
	border: none;
	text-decoration: none;
	color: #555;
}

.modal-close:hover {
	color: #007BFF;
}


/* Alert message */

.alert__message {
	color: #333;
	font-weight: 600;
	font-size: 1rem;
}

.alert--error {
	background-color: #ffebee;
	color: #d32f2f;
	border: 1px solid #d32f2f;
	padding: 10px;
	margin-top: 10px;
	border-radius: 5px;
	font-size: 14px;
	text-align: center;
}

#errorAlert {
	display: block !important;
}


/* Message form */

.message-container {
	margin-top: 1.5rem;
	gap: 2rem;
}


textarea {
	width: 100%;
	min-height: 120px;
	resize: vertical;
	padding: 10px;
	border: 1px solid #dcdcdc;
	border-radius: 5px;
	background: white;
}


textarea#message {
	min-width: 320px;
	position: relative;
	left: 25%
}

.form__item {
	padding-top: 1.5rem;
}