/* Support Form Styles */
.support-section {
	width: 80%;
	margin: 40px auto;
	padding: 20px;
	background-color: rgba(45, 16, 10, 0.8);
	border: 1px solid #d6d6d6;
	border-radius: 8px;
}

.support-form {
	max-width: 600px;
	margin: 0 auto;
	text-align: left;
	color: white;
}

.support-section h2,
.support-section p {
	color: white;
}

.support-section h2 {
	border-bottom-color: white;
}

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

.form-group label {
	display: block;
	margin-bottom: 5px;
	color: #FFFFFF;
	font-weight: bold;
}

.form-group input[type="email"],
.form-group textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #d6d6d6;
	border-radius: 4px;
	font-size: 16px;
	font-family: inherit;
	background-color: #FFFFFF;
	color: #414042;
	box-sizing: border-box;
}

.form-group input[type="email"]:focus,
.form-group textarea:focus {
	outline: none;
	border-color: greenyellow;
	box-shadow: 0 0 5px rgba(173, 255, 47, 0.3);
}

.form-group textarea {
	height: 120px;
	resize: vertical;
}

.send-button {
	background-color: #01676B;
	color: white;
	padding: 12px 30px;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	font-weight: bold;
	font-family: "Berylium", "Garamond", "October Condensed", "VarelaRound", sans-serif;
	cursor: pointer;
	transition: background-color 0.3s ease;
	display: block;
	margin: 0 auto;
}

.send-button:hover {
	background-color: #9ACD32;
	color: #01676B;
}

.send-button:disabled {
	background-color: #cccccc;
	cursor: not-allowed;
}

.form-status {
	margin-top: 20px;
	padding: 10px;
	text-align: center;
	border-radius: 4px;
	display: none;
}

.form-status.success {
	background-color: #F5F5DC;
	color: #01676B;
	border: 1px solid #01676B;
}

.form-status.error {
	background-color: rgba(255, 69, 0, 0.2);
	color: #FF4500;
	border: 1px solid #FF4500;
}