/* styles.css */
body {
  font-family: 'Arial', sans-serif;
  background-color: #008080; /* Dark teal background */
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background-color: rgba(255, 255, 255, 0.8); /* White with 80% opacity */
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 400px;
  backdrop-filter: blur(10px); /* Adds a blur effect for transparency */
}

.header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.company-name {
  font-size: 2.5rem;
  color: #007bff; /* Blue color for the company name */
  margin: 0;
  font-weight: bold;
}

.tagline {
  font-size: 1rem;
  color: #555;
  margin: 0.5rem 0 0;
  font-style: italic;
}

.booking-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.5rem;
  display: block;
}

input[type="text"],
input[type="date"],
input[type="time"],
select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 1rem;
  color: #333;
  background-color: rgba(249, 249, 249, 0.9); /* Light background with transparency */
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
select:focus {
  border-color: #007bff;
  outline: none;
}

.btn {
  background-color: #007bff; /* Blue button */
  color: #fff;
  padding: 0.8rem;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem; /* Space between text and icon */
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
  background-color: #0056b3; /* Darker blue on hover */
  transform: scale(1.05); /* Slightly enlarge on hover */
}

.btn:active {
  transform: scale(0.95); /* Slightly shrink on click */
}

.btn-text {
  font-weight: bold;
}

.btn-icon {
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 480px) {
  .container {
    padding: 1.5rem;
  }

  .company-name {
    font-size: 2rem;
  }

  .tagline {
    font-size: 0.9rem;
  }

  input[type="text"],
  input[type="date"],
  input[type="time"],
  select {
    padding: 0.7rem;
  }

  .btn {
    padding: 0.7rem;
  }
}