.form-card {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
	padding: 2.5rem 2rem;
	width: 100%;
	max-width: 450px;
	animation: fadeIn 0.5s ease;
	text-align: left;
	margin: 0 auto;
  }

  @keyframes fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
  }

  h2 {
	text-align: center;
	color: #4b3b91;
	margin-bottom: 1.8rem;
  }

  label {
	display: block;
	font-weight: 500;
	margin-bottom: 0.4rem;
  }

  input[type="text"], input[type="email"], select {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #ccc;
	border-radius: 12px;
	font-size: 1rem;
	margin-bottom: 1.2rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  input[type="text"]:focus,
  input[type="email"]:focus,
  select:focus {
	border-color: #764ba2;
	outline: none;
	box-shadow: 0 0 0 3px rgba(118, 75, 162, 0.2);
  }

  .days {
	margin-bottom: 1.5rem;
  }

  .day-option {
	display: flex;
	align-items: center;
	margin-bottom: 0.5rem;
  }
  .day-option label{
	cursor: pointer;
  }

  .day-option input {
	margin-right: 10px;
	accent-color: #764ba2;
	cursor: pointer;
  }

  button {
	width: 100%;
	background: linear-gradient(135deg, #6a5acd, #764ba2);
	color: white;
	border: none;
	padding: 14px;
	border-radius: 12px;
	font-size: 1rem;
	cursor: pointer;
	transition: transform 0.2s ease, background 0.3s ease;
  }

  button:hover {
	transform: translateY(-2px);
	background: linear-gradient(135deg, #5a4cb1, #6e3f9b);
  }

  .confirmation {
	margin-top: 1.5rem;
	background: #f3f0ff;
	padding: 1rem;
	border-radius: 12px;
	text-align: center;
	color: #4b3b91;
	display: none;
	animation: fadeIn 0.4s ease;
  }