* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #e3f2fd, #f5f7fa);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 100%;
  max-width: 480px;
  padding: 20px;
}

.form-card {
  background-color: #ffffff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

h1 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 8px;
  color: #222;
}

.subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 24px;
  font-size: 14px;
}

.form-group {
  margin-bottom: 18px;
  position: relative;
}

label {
  display: block;
  margin-bottom: 7px;
  color: #333;
  font-weight: bold;
  font-size: 14px;
}

input,
select {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
}

input:focus,
select:focus {
  border-color: #1976d2;
  box-shadow: 0 0 4px rgba(25, 118, 210, 0.35);
}

.suggestions {
  list-style: none;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 8px;
  margin-top: 6px;
  max-height: 150px;
  overflow-y: auto;
  display: none;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.suggestions li {
  padding: 10px 12px;
  cursor: pointer;
  font-size: 14px;
}

.suggestions li:hover {
  background-color: #e3f2fd;
}

button {
  width: 100%;
  padding: 12px;
  background-color: #1976d2;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

button:hover {
  background-color: #0d47a1;
}

.result-box {
  margin-top: 22px;
  padding: 18px;
  border-radius: 10px;
  background-color: #f1f8e9;
  border: 1px solid #c5e1a5;
}

.result-box h2 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #33691e;
}

.result-box p {
  margin-bottom: 8px;
  color: #333;
}

.hidden {
  display: none;
}