body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(to bottom, lightblue, grey);
    color: #333;
}
.container {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}
input[type="number"], select, textarea, button, input[type="color"], input[type="text"] {
    margin-top: 10px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    font-size: 1rem;
}
textarea {
    resize: none;
    height: 100px;
}
h1, label {
    margin: 10px 0;
}
button {
  border: none;
  background: 7B2D2D;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
}

button a {
  color: black;
  text-decoration: none;
  font-weight: bold;
  font-family: Arial, sans-serif;
}

button a i {
  margin-right: 8px;
}