* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: "Outfit", sans-serif;
    color: #111;
    background-image: url("./Fam2.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }
  .container1 {
    width: 100%;
    max-width: 720px;
    background: rgba(245, 245, 245, 0.25);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
  }
  h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  p {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  form {
    display: grid;
    gap: 1.5rem;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  label {
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  input, select, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: #f5f5f0b9;
    color: #111;
    font-size: 1rem;
  }
  .double {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
  }
  button {
    width: 100%;
    background: #ff6b6b;
    border: none;
    color: white;
    padding: 1rem;
    font-size: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
  }
  button:hover {
    background: #d24b4b;
  }
  .message {
    text-align: center;
    margin-top: 1rem;
    color: #ff6b6b;
    font-weight: 600;
    display: none;
  }
  @media (max-width: 500px) {
    h1 {
      font-size: 1.5rem;
    }
    p {
      font-size: 0.95rem;
    }
    .container1 {
      padding: 1.5rem 1rem;
    }
  }