body {
        font-family: "Vollkorn", serif;
        background-color: #f0f0f0;
        margin: 0;
    }

    h3 {
    margin-top: 10%;
    text-align: center;
    font-weight: 600;
    font-size: 1.5rem;
    color: #6d2323;
    font-style: normal;
}
    

    .container {
        display: flex;
        flex: 1;
        justify-content: center;
        align-items: center;
        height: 80vh;
    }


.form-container {
    background-color: rgb(209, 198, 185);
    opacity: 0.8;
    box-shadow: 10px 10px 15px 5px rgba(119, 108, 108);
    padding: 20px;
    border-radius: 10px;
    width: 80vw;
    margin-top: 2%;
    
}

@media (max-width: 900px) {
    .form-container {
        width: 70%;
    }

    h3 {
        margin-top: 30%;
    }
  }

  @media (max-width: 600px) {
    .form-container {
        width: 80%;
           }
    h3 {
            margin-top: 40%;
        }
  }
  
  /* Styles for laptops */
  @media (min-width: 1024px) {
    .form-container {
        width: 30%;
    }
  }
  
  /* Styles for desktops */
  @media (min-width: 1200px) {
    .form-container {
      max-width: 25%; /* Up to 1140px wide */
    }
  }

h1 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 900;
    font-size: 2rem;
    color: #6d2323;
    font-style: normal;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-weight: 400;
    font-size: 1rem;
}

input, textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #28a745;
    color: #fff;
    cursor: pointer;
}

button:hover {
    background-color: #218838;
}

.hidden {
    display: none;
}

#confirmation {
    text-align: center;
}
