body {
  background: linear-gradient(to right, #6a11cb, #2575fc);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.voucher-container {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 420px;
}
.voucher-container h3 {
  text-align: center;
  margin-bottom: 20px;
  color: #333333;
}
.voucher-container p.instructions {
  font-size: 0.95rem;
  color: #555555;
  margin-bottom: 25px;
  text-align: center;
}
.form-group {
  position: relative;
}
.toggle-password {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #6c757d;
}
.btn-primary {
  background-color: #2575fc;
  border-color: #2575fc;
}
.btn-primary:hover {
  background-color: #1a5edb;
  border-color: #1a5edb;
}
.buy-voucher {
  text-align: center;
  margin-top: 15px;
}
.buy-voucher a {
  color: #2575fc;
  text-decoration: none;
}
.buy-voucher a:hover {
  text-decoration: underline;
}
@media (max-width: 576px) {
  .voucher-container {
    padding: 30px 20px;
  }
}