body {
	margin: 0;
	font-family: Arial, sans-serif;
	min-height: 100vh;
	background-color: #fff;
}

.flex-container {
	display: flex;
	min-height: 100vh;
	align-items: center;
	justify-content: center;
}

.col-md-6 {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	width: 100%;
	max-width: 500px;
}

.image-container {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
}

.image-container img {
	width: 100%;
	max-width: 350px;
	height: auto;
}

.caption {
	width: 100%;
}

.form-control {
	width: 100%;
	height: 48px;
	border-radius: 6px;
	padding: 0.75rem 1rem;
	font-size: 1rem;
	border: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	text-align: center;
	cursor: pointer;
}

.form-control::placeholder {
	text-align: center;
	color: #6c757d;
}

.form-control:focus {
	outline: none;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.warning {
	color: red;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	text-align: center;
}

.button-group {
	display: flex;
	gap: 1rem;
	width: 100%;
}

.button-group .btn {
	flex: 1;
	background-color: #ff8000;
	border: none;
	padding: 0.875rem;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.2s;
	color: white;
	box-shadow: 0 2px 8px rgba(255, 128, 0, 0.3);
}

.button-group .btn:hover:not(:disabled) {
	background-color: #e67300;
	box-shadow: 0 4px 12px rgba(255, 128, 0, 0.4);
}

.button-group .btn:disabled {
	background-color: #ccc;
	cursor: not-allowed;
	box-shadow: none;
}

@media (max-width: 768px) {
	.flex-container {
		padding: 1rem;
	}

	.col-md-6 {
		max-width: 400px;
	}

	.image-container img {
		max-width: 280px;
	}

	.button-group {
		flex-direction: column;
	}
}
