.guest-form-container {
  background: #fff;
  max-width: 400px;
  margin: 40px auto;
  padding: 32px 24px 24px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);

  h2 {
    text-align: center;
    color: #2d3a4b;
    margin-bottom: 24px;
  }

  label {
    display: block;
    margin-bottom: 6px;
    color: #2d3a4b;
    font-weight: 500;
  }

  input[type="text"],
  input[type="number"],
  select {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 18px;
    border: 1px solid #cfd8dc;
    border-radius: 6px;
    font-size: 16px;
    background: #f9fafb;
    transition: border 0.2s;
  }

  input[type="text"]:focus,
  input[type="number"]:focus,
  select:focus {
    border-color: #107E65;
    outline: none;
  }

  button[type="submit"] {
    width: 100%;
    background: #107E65;
    color: #fff;
    border: none;
    padding: 12px 0;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
  }

  button[type="submit"]:hover {
    background: #107E65;
  }
}