.contact-container {
	max-width: 500px;
	width: 100%;
}

.contact-card {
	background: rgba(123, 31, 162, 0.4);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 32px;
	padding: 50px 40px;
	backdrop-filter: blur(10px);
}

.contact-icons {
	display: flex;
	justify-content: center;
	gap: 15px;
	font-size: 60px;
	margin-bottom: 30px;
}

.title {
	text-align: center;
	margin-bottom: 10px;
}

.title h1 {
	font-size: 48px;
	font-weight: 900;
	color: #1a1a1a;
	text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.3);
}

.title span {
	color: white;
}

.contact-subtitle {
	background: white;
	color: #7B1FA2;
	text-align: center;
	padding: 12px 24px;
	border-radius: 25px;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 1px;
	margin-bottom: 25px;
}

.contact-description {
	text-align: center;
	color: white;
	font-size: 16px;
	margin-bottom: 30px;
	line-height: 1.5;
}

.form-group {
	margin-bottom: 20px;
}

.contact-input-wrapper {
	background: linear-gradient(135deg, #FFF5E6 0%, #FFE9D0 100%);
	border-radius: 20px;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.contact-input-icon {
	font-size: 20px;
	color: #999;
}

/*input, textarea, select {*/
.contact-input, textarea, select {
	flex: 1;
	border: none;
	background: transparent;
	font-size: 16px;
	color: #333;
	outline: none;
	font-family: inherit;
}

/*input::placeholder, textarea::placeholder {*/
.contact-input::placeholder, textarea::placeholder {
	color: #999;
}

textarea {
	resize: vertical;
	min-height: 80px;
}

.contact-submit-button {
	width: 100%;
	background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
	color: white;
	border: none;
	padding: 18px;
	border-radius: 20px;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 10px;
	transition: transform 0.2s;
}

.contact-submit-button:hover {
	transform: translateY(-2px);
}

.contact-divider {
	text-align: center;
	color: white;
	font-weight: 600;
	margin: 25px 0;
	font-size: 14px;
}

.contact-back-button {
	width: 100%;
	background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
	color: #1a1a1a;
	border: none;
	padding: 18px;
	border-radius: 20px;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-decoration: none;
	display: block;
	text-align: center;
	transition: transform 0.2s;
}

.contact-back-button:hover {
	transform: translateY(-2px);
}

.contact-info {
	text-align: center;
	margin-top: 25px;
	color: white;
	font-size: 14px;
}

.contact-info a {
	color: #FFD700;
	text-decoration: none;
	font-weight: 600;
}

#error-message4 {
	text-align: center;
	color: #ffd700;
	font-weight: 800;
}

@media (max-width: 600px) {
	.contact-card {
		padding: 40px 30px;
	}

	.title h1 {
		font-size: 38px;
	}

	.contact-icons {
		font-size: 50px;
	}
}