body {
  font-family: 'Orbitron', sans-serif;
  text-align: center;
  background-color: #3D72A6;
  margin: 0;
}

.custom-font {
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
}

.header-img {
  width: 100%;
}

.header {
  padding-bottom: 60px;
}

.container {
  border-radius: 5px;
  background-image: url('assets/images/border.png');
  background-size: 100% 100%;
  max-width: 600px;
  max-height: 67px;
  padding-top: 10px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 635px) {
  .container {
    border-radius: 5px;
    background-image: url('assets/images/border.png');
    background-size: 95% 100%;
    background-repeat: no-repeat;
    max-width: 600px;
    max-height: 67px;
    padding-top: 10px;
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
    background-position: center;
  }
}

.content-box {
  position: relative;
  margin: auto;
}

.content-box::before {
  content: "";
  position: absolute;
  top: -29px;
  left: 50%;
  transform: translateX(-50%);
  width: 555px;
  max-width: 100%;
  height: 29px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  background-image: url('assets/images/border-style.png');
}

@media (max-width: 635px) {
  .content-box::before {
    content: "";
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 290px;
    max-width: 100%;
    height: 29px;
    background-size: 100%;
    background-position: center;
    background-image: url('assets/images/border-style-m.png');
  }
}

.code-input {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
}

@media (max-width: 480px) {
  .code-input {
    gap: 5px;
  }
}

.digit {
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  width: 20px;
  height: 20px;
  text-align: center;
  font-size: 20px;
  border: 2px solid #ccc;
  border-radius: 5px;
}

@media (max-width: 480px) {
  .digit {
    width: 18px;
    height: 18px;
    font-size: 12px;
  }
}

.no-margin {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.digit:focus {
  border-color: #406ca9;
  outline: none;
}

button {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  padding: 12px;
  font-size: 18px;
  cursor: pointer;
  width: 80%;
  max-width: 200px;
  margin-top: 10px;
  border: none;
  background-color: black;
  color: white;
  border-radius: 5px;
  text-transform: uppercase;
}

@media (max-width: 480px) {
  button {
    width: 40% !important;
  }
}

.message-output {
  padding-top: 20px
}

#messageContainer {
  display: none;
  margin-top: 40px;
  font-size: 20px;
  font-weight: bold;
}

.bottom {
  margin-top: 75px;
}

.image-container {
  display: flex;
  justify-content: center;
}

.image-container img {
  width: 30%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 767px) {
  .image-container {
    flex-direction: column;
    align-items: center;
  }

  .image-container img {
    width: 80%;
  }
}

.msg-output {
  max-width: 95%;
}

.hidden-mobile {
  display: none;
}

@media (min-width: 500px) {
  .hidden-mobile {
    display: block;
  }
}

.hidden-desktop {
  display: block;
}

@media (min-width: 500px) {
  .hidden-desktop {
    display: none;
  }
}

h3 {
  font-size: 22px;
}

@media (max-width: 1024px) {
  h3 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  h3 {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  h3 {
    font-size: 12px;
  }
}

.collect-more-btn {
  max-width: 200px;
}

.legal-copy {
  padding-top: 125px;
}
