.dance-registration-container {
	max-width: 600px;
	margin: 0 auto;
	font-family: inherit;
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.dance-registration-container h3 {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 1.4rem;
	color: #333;
}

.dance-form-group {
	margin-bottom: 15px;
}

.dance-form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
	color: #555;
}

.dance-form-group input[type="text"],
.dance-form-group input[type="email"],
.dance-form-group input[type="tel"],
.dance-form-group input[type="date"],
.dance-form-group textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 1rem;
	box-sizing: border-box;
}

.dance-form-group input:focus,
.dance-form-group textarea:focus {
	border-color: #0073aa;
	outline: none;
	box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}

.dance-btn {
	background-color: #0073aa;
	color: #fff;
	border: none;
	padding: 12px 24px;
	border-radius: 4px;
	font-size: 1rem;
	cursor: pointer;
	font-weight: bold;
	display: inline-block;
	transition: background-color 0.3s;
}

.dance-btn:hover {
	background-color: #005177;
}

.dance-btn:disabled {
	background-color: #ccc;
	cursor: not-allowed;
}

.dance-btn-secondary {
	background-color: #6c757d;
}

.dance-btn-secondary:hover {
	background-color: #5a6268;
}

.dance-error {
	color: #dc3545;
	background: #f8d7da;
	border: 1px solid #f5c6cb;
	padding: 10px;
	border-radius: 4px;
	margin-top: 15px;
}

.dance-success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
	padding: 20px;
	border-radius: 4px;
	text-align: center;
}

.dance-classes-list {
	margin: 20px 0;
	padding: 15px;
	background: #f9f9f9;
	border-radius: 4px;
}

.dance-checkbox-item {
	margin-bottom: 10px;
}

.dance-checkbox-item:last-child {
	margin-bottom: 0;
}

.dance-checkbox-item label {
	display: flex;
	align-items: center;
	font-weight: normal;
	cursor: pointer;
}

.dance-checkbox-item input[type="checkbox"] {
	margin-right: 10px;
	width: 18px;
	height: 18px;
}

.dance-form-buttons {
	display: flex;
	gap: 10px;
	margin-top: 10px;
}

.dance-gdpr label {
	font-weight: normal;
	font-size: 0.9rem;
	display: flex;
	align-items: flex-start;
}

.dance-gdpr input[type="checkbox"] {
	margin-right: 10px;
	margin-top: 4px;
}
