body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f2f2f2;
}

.topbar {
  background: #003580;
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}

.container {
  max-width: 420px;
  margin: auto;
  padding: 20px;
}

h2 {
  margin-bottom: 20px;
}

input {
  width: 92%;
  padding: 14px;
  border-radius: 8px;
  border: 2px solid #0071c2;
  margin-top: 5px;
  margin-bottom: 15px;
}

button {
  width: 100%;
  padding: 14px;
  background: #0071c2;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
}

.outline {
  background: white;
  color: #0071c2;
  border: 2px solid #0071c2;
  margin-top: 15px;
}

.help {
  text-align: center;
  color: #0071c2;
  margin-top: 20px;
}

.small-text {
  font-size: 14px;
}

.footer-text {
  font-size: 12px;
  text-align: center;
}

.copyright {
  font-size: 12px;
  text-align: center;
}

.input-box {
  position: relative;
}

.eye {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #ddd;
}