
html, body {
	position: relative;
	width: 100%;
	height: 100%;
	background-color: #FFD8F0;
}

body {
	color: #333;
	margin: 0;
	padding: 8px;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

a {
	color: rgb(0,100,200);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a:visited {
	color: rgb(0,80,160);
}

input, button, select, textarea {
	font-family: inherit;
	font-size: inherit;
	-webkit-padding: 0.4em 0;
	padding: 0.4em;
	margin: 0 0 0.5em 0;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 2px;
}

input:disabled {
	color: #ccc;
}

button {
	color: #333;
	background-color: #f4f4f4;
	outline: none;
}

/* button:disabled {
	color: #fff;
} */

button:not(:disabled):active {
	background-color: #ddd;
}

button:focus {
	border-color: #666;
}

	/* body {
	  font-family: 'Arial', sans-serif;
	  margin: 0;
	  padding: 0;
	  background-color: #FFC0CB;
	  color: #333;
	} */

	.container {
		max-width: 600px;
		margin: 50px auto;
		padding: 20px;
		background-color: #fff;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
		border-radius: 5px;
	  }
	
	  h2 {
		font-size: 24px;
		font-weight: bold;
		margin-bottom: 20px;
		text-align: center;
	  }
	
	  label {
		display: block;
		font-size: 14px;
		margin-bottom: 5px;
	  }
	
	  input {
		width: 100%;
		min-width: fit-content;
		padding: 10px;
		border: 1px solid #ccc;
		border-radius: 5px;
		margin-bottom: 20px;
		box-sizing: border-box;
	  }
	
	  .guests {
		display: flex;
		justify-content: space-between;
		margin-bottom: 20px;
	  }
	
	  .guests label {
		font-size: 14px;
		margin-bottom: 5px;
	  }
	
	  .guests input {
		width: calc(33.33% - 10px);
		margin-right: 10px;
	  }
	
	  button {
		background-color: #007bff;
		color: #fff;
		border: none;
		padding: 12px 20px;
		font-size: 16px;
		border-radius: 5px;
		cursor: pointer;
		display: block;
		width: 100%;
		margin-top: 20px; /* Added margin-top */
	  }
	
	  button:hover {
		background-color: #0056b3;
	  }
	
	  .policy {
		font-size: 12px;
		margin-top: 20px;
		line-height: 1.5;
	  }
  
	  .image {
	  text-align: center; /* Center the content horizontally */
	}
  
	.logo {
	  height: 200px; /* Adjust the height of the logo as desired */
	  width: auto; /* Allow the width to adjust proportionally */
	}

	.policy-checkbox{
		display:grid;
		width : fit-content;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		padding:10px;
		max-width: fit-content;
	}
	
	.policy-checkbox .policyCheckbox{
		grid-column: span 1 / span 1;
		justify-self: center; 
		/* height : fit-content; */
	}
	
	.policy-checkbox label{
		grid-column: span 3 / span 3;
		font-weight: bold;
	}