/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* height: 100vh; */
    flex-direction: column;
    padding:20px;
}

h1 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
}

/* Form styling */
form {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
}

label {
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
  color: #333;
}

input[type="text"],
textarea,
select,
input[type="number"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 15px;
}

textarea {
  height: 80px;
  resize: vertical;
}

button[type="submit"] {
  background-color: #f52451;
  color: #fff;
  font-size: 16px;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #d31e46;
}

/* Additional styling for the new number input */
input[type="number"] {
  width: 100%;
}
