body {
    font-family: Arial, sans-serif;
    background-image: url('https://wallpaperaccess.com/full/6942998.jpg');
    background-repeat: no-repeat;
    background-position: 40% center;
    background-attachment: fixed;
    background-size: cover;
    margin: 0;
    padding: 100px;
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    min-height: 80vh;
  }
  

  form {
    background-color: #ffffffcc; 
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    width: 100%;
  }
  

  label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #333;
  }

  input[type="text"],
  input[type="email"],
  input[type="date"],
  textarea,
  select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 14px;
  }

  input[type="radio"],
  input[type="checkbox"] {
    margin-right: 5px;
  }

  .inline {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 5px;
  }

  textarea {
    resize: vertical;
  }

  button {
    margin-top: 20px;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
  }

  button:hover {
    background-color: #0056b3;
  }

  figure {
    margin-top: 20px;
    text-align: center;
  }

  figcaption {
    font-size: 14px;
    color: #666;
  }