.angie-check-in-form-container {
	max-width: 600px;
	margin: 0 auto;
	padding: 30px;
	background: #f9f9f9;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0,0,0,0.05);
	font-family: inherit;
}

.angie-check-in-form-container h3 {
	margin-top: 0;
	margin-bottom: 20px;
	color: #333;
	font-size: 24px;
	text-align: center;
}

.angie-check-in-form .form-group {
	margin-bottom: 15px;
}

.angie-check-in-form .form-row {
	display: flex;
	gap: 15px;
}

.angie-check-in-form .half-width {
	flex: 1;
}

.angie-check-in-form label {
	display: block;
	margin-bottom: 5px;
	font-weight: 500;
	color: #555;
}

.angie-check-in-form input[type="text"],
.angie-check-in-form input[type="email"],
.angie-check-in-form input[type="tel"],
.angie-check-in-form input[type="date"],
.angie-check-in-form input[type="number"],
.angie-check-in-form textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 16px;
}

.angie-check-in-form input:focus,
.angie-check-in-form textarea:focus {
	border-color: #046bd2;
	outline: none;
	box-shadow: 0 0 0 2px rgba(4,107,210,0.2);
}

.angie-check-in-form .submit-btn {
	width: 100%;
	padding: 12px;
	background-color: #046bd2;
	color: white;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s;
	margin-top: 10px;
}

.angie-check-in-form .submit-btn:hover {
	background-color: #045cb4;
}
