@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Libre Franklin;
}

body {
  background-color: #004832;
  overflow-x: hidden;
  width: 100%;
}

.full {
  font-family: sans-serif;
  color: white;
  width: 100%;
  max-width: 100%;
  height: fit-content;
  text-align: center;
  margin: auto;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  box-sizing: border-box;
}

.header {
  width: 100%;
  text-align: center;
}

.header img {
  width: 28%;
  height: 30%;
  text-align: center;
  color: white;
}

#redeemBtn, #clearBtn {
  width: 250px;
  height: 38px;
  border-radius: 4px;
  border-style: none;
  margin-left: 5px;
  font-weight: bold;
  background: #f8f9fa;
  color: #212529;
  -webkit-tap-highlight-color: transparent;
}
#redeemBtn:hover, #clearBtn:hover {
  background-color: #80c342;
  color: black;
}
#redeemBtn:disabled, #clearBtn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #cccccc;
}
#redeemBtn:not(:disabled), #clearBtn:not(:disabled) {
  cursor: pointer;
}
#redeemBtn:not(:disabled):active, #clearBtn:not(:disabled):active {
  background-color: #80c342;
  color: black;
  transform: scale(0.98);
}

input[type=email] {
  width: 100%;
  max-width: 300px;
  height: 30px;
  border-radius: 4px;
  border-style: none;
  padding: 8px;
  background-color: #f0f0f0;
  box-sizing: border-box;
}

input[type=text] {
  width: 100%;
  max-width: 300px;
  height: 30px;
  border-radius: 4px;
  border-style: none;
  padding: 8px;
  background-color: #f0f0f0;
  box-sizing: border-box;
}

label {
  padding: 10px;
}

/* HOVER STATE */
/* Desktop: hover state */
@media (hover: hover) {
  button:not(:disabled):hover {
    background-color: #80c342;
    color: black;
  }
}
.optIn {
  font-style: italic;
  font-size: small;
}

input[type=checkbox] {
  border-color: pin;
}

.compliance {
  font-style: italic;
  font-size: 14px;
}

/* 
NGC COLOUR PALLETE
Dark Green: #004832
Light Green: #80c342
Other Dark Green: #006341
Gold: #a29061
Other Light Green: #10a867

*/
@media screen and (max-width: 640px) {
  .header img {
    width: 64%;
    height: 50%;
  }
  .wrapper {
    margin-top: 10px;
    padding: 0 1rem;
    box-sizing: border-box;
  }
  .full {
    width: 100%;
    padding: 0 0.5rem;
  }
  .container {
    width: 100%;
    box-sizing: border-box;
  }
  #redeemBtn, #clearBtn {
    margin-top: 10px;
    width: 100%;
    margin-left: 0;
  }
  input[type=email],
  input[type=text] {
    margin-top: 10px;
    width: 100%;
    max-width: 100%;
  }
  h1 {
    font-size: large;
  }
}
/* WHERE TO CLAIM STYLES */
.claim-section {
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.06);
  padding: 14px 18px;
  border-left: 4px solid #80c342; /* accent color */
  text-align: left;
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 6px;
  color: #ffffff;
  box-sizing: border-box;
}

.claim-section h2 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.claim-section p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #f2f5f2;
}

@media screen and (max-width: 640px) {
  .claim-section {
    padding: 12px;
    border-left-width: 3px;
  }
  .claim-section h2 {
    font-size: 1rem;
  }
}
.sections-container {
  display: flex;
  gap: 20px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
}

/* DRINKS AND TERMS SECTIONS STYLES */
.drinks-section,
.terms-section {
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.06);
  padding: 14px 18px;
  border-left: 4px solid #80c342; /* accent color */
  text-align: left;
  flex: 1;
  border-radius: 6px;
  color: #ffffff;
  box-sizing: border-box;
}

.drinks-section h2,
.terms-section h2 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #80c342;
}

.drinks-list,
.terms-list {
  list-style: none;
  padding-left: 0;
}

.drinks-list li,
.terms-list li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f2f5f2;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.drinks-list li:before,
.terms-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #80c342;
  font-weight: bold;
}

@media screen and (max-width: 640px) {
  .drinks-section,
  .terms-section {
    padding: 12px;
    border-left-width: 3px;
  }
  .drinks-section h2,
  .terms-section h2 {
    font-size: 1rem;
  }
  .drinks-list li,
  .terms-list li {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }
  .sections-container {
    flex-direction: column;
    gap: 0;
  }
  .drinks-section,
  .terms-section {
    margin-top: 18px;
  }
}
/* ADDITIONAL CSS */
.inputWrappers {
  margin-bottom: 1.5%;
}

.message {
  margin: 1%;
}

/*# sourceMappingURL=redeem.css.map */
