/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: #222;
	background-image: url("../images/bgg.jpg");
	background-size: cover;
	padding: 20px;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Container */
.container {
	max-width: 800px;
	width: 100%;
	background: white;
	border-radius: 15px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	padding: 30px;
	margin: 20px auto;
}

/* Form Styling */
.register-form {
	padding: 20px;
}

.form-group {
	margin-bottom: 20px;
}

.form-row {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.form-row .form-group {
	flex: 1;
	min-width: 300px;
}

/* Typography */
h2 {
	line-height: 1.66;
	margin: 0;
	padding: 0;
	font-weight: 600;
	color: #009688;
	font-family: 'Poppins';
	font-size: 17px;
	text-align: center;
}

p {
	font-size: 16px;
	color: #009688;
	text-align: center;
	margin-bottom: 15px;
	font-family: 'Poppins', sans-serif;
}

.manda {
	text-align: left;
	font-size: 14px;
	color: #009688;
	font-weight: 500;
}

.co {
	color: #e63946;
}

/* Form Elements */
label {
	display: block;
	font-size: 14px;
	color: #222;
	margin-bottom: 8px;
	font-weight: 500;
	font-family: 'Poppins', sans-serif;
}

input[type="text"],
input[type="email"],
select {
	width: 100%;
	padding: 12px;
	border: 1px solid #009688;
	border-radius: 8px;
	font-size: 14px;
	font-family: 'Montserrat', sans-serif;
	transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus {
	border-color: #078377;
	box-shadow: 0 0 0 3px rgba(0, 150, 136, 0.1);
	outline: none;
}

/* Select Styling */
.form-select {
	position: relative;
}

select {
	appearance: none;
	cursor: pointer;
}

.select-icon {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}

.select-icon i {
	color: #6b7280;
	font-size: 18px;
}

/* File Input */
input[type="file"] {
	padding: 10px 0;
	font-size: 14px;
}

.heu__kkkl {
	border: none !important;
}

/* Error Messages */
.jk___klll,
.field-error {
	color: #e63946;
	font-size: 12px;
	margin-top: 5px;
	display: block;
	font-weight: 500;
	font-family: 'Poppins', sans-serif;
}

.userfrm_err input {
	border-color: #e63946;
	background: #fef2f2;
}

/* Buttons */
.submitt {
	background: transparent;
	color: #009688;
	padding: 12px 24px;
	border: 2px solid #009688;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	display: inline-block;
	width: auto;
	min-width: 140px;
	font-family: 'Poppins', sans-serif;
}

.submitt:hover {
	background: #009688;
	color: white;
	border-color: #078377;
	transform: translateY(-2px);
}

/* Captcha */
#captcha_image {
	max-width: 200px;
	/* Increased size */
	border-radius: 8px;
	border: 1px solid #d1d5db;
	padding: 5px;
	background: #fff;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
	.container {
		max-width: 100%;
		padding: 15px;
	}

	.form-row {
		flex-direction: column;
	}

	.form-row .form-group {
		min-width: 100%;
	}

	.register-form {
		padding: 15px;
	}

	#captcha_image {
		max-width: 180px;
		/* Slightly smaller for smaller screens */
	}
}

@media screen and (max-width: 480px) {
	h2 {
		font-size: 20px;
	}

	p {
		font-size: 14px;
	}

	.submitt {
		width: 100%;
	}

	#captcha_image {
		max-width: 160px;
		/* Further adjusted for very small screens */
	}
}

/* Print Styles */
@media print {
	.container {
		box-shadow: none;
		padding: 0;
		width: 100%;
	}

	h2,
	p {
		font-size: 14px;
	}
}

/* Font Imports */
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/poppins/poppins-v5-latin-regular.woff2') format('woff2'),
		url('../fonts/poppins/poppins-v5-latin-regular.woff') format('woff');
}

@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 500;
	src: url('../fonts/poppins/poppins-v5-latin-500.woff2') format('woff2'),
		url('../fonts/poppins/poppins-v5-latin-500.woff') format('woff');
}

@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 600;
	src: url('../fonts/poppins/poppins-v5-latin-600.woff2') format('woff2'),
		url('../fonts/poppins/poppins-v5-latin-600.woff') format('woff');
}

@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/montserrat/Montserrat-Regular.woff2') format('woff2'),
		url('../fonts/montserrat/Montserrat-Regular.woff') format('woff');
}

@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 500;
	src: url('../fonts/montserrat/Montserrat-Medium.woff2') format('woff2'),
		url('../fonts/montserrat/Montserrat-Medium.woff') format('woff');
}
.form-row {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
	/* align everything in the same row baseline */
}

.form-group {
	flex: 1;
	min-width: 250px;
}

.form-group label {
	margin-right: 10px;
	white-space: nowrap;
}
.form-submit {
	text-align: center;
	/* Center the button */
	margin-top: 30px;
	/* Add some spacing above */
}

.submitt {
	background: #009688;
	color: white;
	padding: 15px 40px;
	/* Bigger button */
	border: none;
	/* Remove border */
	border-radius: 50px;
	font-size: 18px;
	/* Bigger font */
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	display: inline-block;
	min-width: 200px;
	/* Ensures it looks big enough */
}

.submitt:hover {
	background: #078377;
	transform: translateY(-2px);
}