/* General reset & body styling */
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;   /* center horizontally */
  align-items: center;       /* center vertically */
  flex-direction: column;    /* stack elements vertically */
  background: #f0f2f5;
  font-family: Arial, sans-serif;
  color: #333;
}

/* Headings */
h1 {
  margin-bottom: 10px;
  font-size: 30px;
}

p {
  margin: 5px 0 15px;
  font-size: 16px;
}

/* Main claim form box */
form.index {
  background: #fff;
  padding: 40px 50px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  max-width: 450px;
  width: 100%;
  text-align: center;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

input[type="text"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

input[type="submit"].claim,
button.claim {
  width: 100%;
  padding: 12px;
  background: #28a745;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

input[type="submit"].claim:hover,
button.claim:hover {
  background: #1e7e34;
}

/* Reset and links inside forms */
form button,
form a.claim {
  display: inline-block;
  margin-top: 15px;
  text-decoration: none;
  text-align: center;
  background: #28a745;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 15px;
}

form button:hover,
form a.claim:hover {
  background: #1e7e34;
  text-decoration: none;
}

/* Discount coupon success box */
.discount-container {
  background: #fffbe6;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  text-align: center;
  max-width: 400px;
  width: 100%;
  margin-top: 30px;
  border: 2px dashed #f1c232;
}

.discount-container h1 {
  margin: 20px 0;
  font-size: 36px;
  color: #000000;
}

.discount-container p {
  font-size: 18px;
}

.discount-container h2 {
  margin: 20px 0;
  font-size: 28px;
}

.reset {
  background: #dc3545;
  padding: 12px 30px;
  border: none;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  margin: 10px 5px 0 5px;
  transition: background 0.2s ease-in-out;
}

.reset:hover {
  background: #b02a37;
}

a {
  display: inline-block;
  margin-top: 15px;
  text-decoration: none;
  color: #007BFF;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}