.booking-bg {
    background: url('din-baggrund.jpg') no-repeat center center/cover;
    padding: 3rem 1rem;
    display: flex;
    justify-content: center;
  }
  
  .form-wrapper {
    background: rgba(233, 219, 184, 0.95);
    padding: 2rem;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }
  
  .form-wrapper .logo {
    text-align: center;
    margin-bottom: 1rem;
  }

  .form-wrapper .logo img {
    max-width: 200px;
    height: auto;
  }

  .form-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    color: #3F3316;
  }
  
  label {
    font-weight: bold;
    margin-top: 1rem;
    color: #3F3316;
    display: block;
  }
  
  .styled-input,
  .styled-select {
    width: 100%;
    padding: 0.7rem;
    margin-top: 0.4rem;
    border-radius: 10px;
    border: 1px solid #907155;
    background: #fff;
    font-size: 1rem;
  }
  
  .checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
  }
  
  .styled-button {
    background-color: #A92D25;
    color: white;
    border: none;
    padding: 0.9rem;
    width: 100%;
    font-size: 1.1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 30px;
  }
  
  .styled-button:hover {
    background-color: #771A12;
  }
  