
    /* Style for container div */
    .container {
      margin: 0 auto;
      max-width: 500px;
      padding: 180px;
    }

    body{
        background-image: url("/bgim/bg3.jpg");
        
        background-size: 125%;
        background-position: center;
        background-repeat: no-repeat;
        
    }


    /* Style for box div */
    .box {
      background-color: #f2f2f24f;
      border: 1px solid #98da9860;
      border-radius: 5px;
      padding: 40px;
    }

    /* Style for close button */
    .close {
      position: center;
      top: 10px;
      right: 10px;
      transform: translate(1600%, -50%);
      font-size: 20px;
      background-color: transparent;
      border: none;
      outline: none;
      cursor: pointer;
    }

    .close::after {
        content: "Close";
        position: absolute;
        top: -25px;
        left: 50%;
        transform: translateX(-50%);
        padding: 5px;
        background-color: #333;
        color: #fff;
        font-size: 14px;
        border-radius: 5px;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
      }
      
      .close:hover::after {
        opacity: 1;
      }

    /* Style for form heading */
    h1 {
      margin-top: 0;
      text-align: center;
      color: #070000be;
    }

    /* Style for form labels */
    label {
      display: block;
      margin-bottom: 0px;
      color: #333;
      padding: 10px;
    }

    /* Style for form input fields */
    input[type="text"],
    input[type="email"],
    textarea {
      width: 400px;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      padding-bottom: 10px;
    }

    /* Style for form select element */
    select {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    /* Style for form submit button */
    .submit {
      display: block;
      width: 420px;
      padding: 10px;
      border: none;
      border-radius: 4px;
      background-color: #4CAF50;
      color: #fff;
      font-size: 16px;
      cursor: pointer;
    }

    /* Style for form submit button on hover */
    .submit:hover {
      background-color: #45a049;
    }
