* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f2f2f2;
  font-family: Arial, sans-serif;
}

.app {
  max-width: 430px;
  margin: auto;
  min-height: 100vh;
  background: white;
  padding: 25px;
}

h2 {
  text-align: center;
  color: #0b3d91;
  margin-bottom: 5px;
}

p {
  text-align: center;
  color: gray;
  margin-bottom: 20px;
}

input,
textarea,
button {
  width: 100%;
  padding: 14px;
  margin-top: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
}

textarea {
  height: 90px;
  resize: none;
}

label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

button {
  background: #0b3d91;
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
}


.menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
}

.menu-btn {
  display: block;
  text-align: center;
  background: #0b3d91;
  color: white;
  padding: 13px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
}