


.language-switcher {
	display: flex;
	gap: 10px;
}


.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-content h2 {
	font-size: 36px;
	margin-bottom: 20px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.form-container {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 15px;
	padding: 40px;
	max-width: 700px;
	margin: 30px auto;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: var(--dark);;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 16px;
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	box-shadow: 0 0 0 3px rgba(74, 105, 189, 0.2);
	outline: none;
}

.captcha-container {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.captcha-container img {
	border: 1px solid #ddd;
	border-radius: 8px;
	height: 50px;
}

.captcha-container a {
	text-decoration: none;
	font-size: 14px;
}

.form-row {
	display: flex;
	gap: 20px;
	margin-bottom: 25px;
}

.form-row .form-group {
	flex: 1;
	margin-bottom: 0;
}

.btn {
	display: inline-block;
	color: white;
	padding: 12px 30px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	width: 100%;
	margin-top: 10px;
}

.btn:hover {
	transform: scale(1.02);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
	background: #6c757d;
}

.login-link {
	text-align: center;
	margin-top: 20px;
}

.login-link a {
	text-decoration: none;
	font-weight: 600;
}

.login-link a:hover {
	text-decoration: underline;
}

.error-message {
	color: #dc3545;
	font-size: 14px;
	margin-top: 5px;
	display: block;
}


.footer-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
}

.footer-section {
	flex: 1;
	min-width: 250px;
	margin-bottom: 30px;
	padding: 0 15px;
}

.footer-section h3 {
	font-size: 20px;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.footer-section h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 2px;
	background: #fdbb2d;
}

.footer-section p {
	line-height: 1.8;
	margin-bottom: 15px;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.contact-info span {
	display: flex;
	align-items: center;
	gap: 10px;
}

.social-links {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.social-links a {
	display: inline-block;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	color: white;
	transition: all 0.3s ease;
}


.footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 20px;
	font-size: 14px;
}

/* استایل برای زبان عربی */
body[dir="rtl"] {
	text-align: right;
}

body[dir="rtl"] .footer-section h3::after {
	right: 0;
	left: auto;
}

/* استایل برای زبان انگلیسی */
body[lang="en"] {
	direction: ltr;
	text-align: left;
}

body[lang="en"] .footer-section h3::after {
	right: auto;
	left: 0;
}

/* انیمیشن‌ها */
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

.fade-in {
	animation: fadeIn 0.8s ease forwards;
}

/* ریسپانسیو */
@media (max-width: 768px) {
	header {
		flex-direction: column;
		gap: 15px;
	}
	
	.hero-content h2 {
		font-size: 28px;
	}
	
	.form-container {
		padding: 25px;
	}
	
	.form-row {
		flex-direction: column;
		gap: 0;
	}
	
	.footer-content {
		flex-direction: column;
	}
}
