body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #590016;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  /* height: 100vh; */
}
.container {
  width: 100%;
  max-width: 400px;
  /* padding: 20px; */
  position: relative;
}
.header-images {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}
.header-images img {
  width: 100%;
  margin-bottom: -25px;
  margin-top: 8px;
  border-radius: 10px;
}
.plans {
  margin: 20px;
  margin-bottom: 0px;
}
.plan {
  background-color: #4a0008;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid #f2f2f2;
  transition:
    border-color 0.3s,
    background-color 0.3s;
}
.plan.highlight {
  border-color: #ffd700;
  background-color: #97001e;
}
.plan .price-container {
  display: flex;
  align-items: baseline;
  font-size: 18px;
  padding-top: 5px;
}
.plan .price {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}
.plan.highlight .price {
  color: #ffd700;
}
.plan del {
  color: #bbbbbb;
  font-size: 16px;
  padding-top: 5px;
}
.plan .save {
  background-color: #ffd700;
  color: #000;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: bold;
  display: inline-block;
  position: absolute;
  top: -10px;
  left: 10px;
}
.plan .bookmark {
  position: absolute;
  top: 0px;
  right: 10px;
  width: 24px;
  height: 30px;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.plan input {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background-color: #590016; /* Added background color */
}

.btn {
  background-color: #ffd700;
  color: #590016;
  padding: 10px;
  font-size: 20px;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  width: 90%;
  margin-top: 0px;
  overflow: hidden;
  margin-left: 18px;
  position: relative;
  margin-bottom: 7px;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.5)
  );
  transform: skewX(-50deg);
  animation: slide 5s infinite;
  filter: brightness(2);
}
@keyframes slide {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.back-arrow {
  position: absolute;
  top: -12px;
  left: 0px;
  font-size: 40px;
  color: #ffffff;
}
.recommended {
  margin-top: 15px;
}
input[type="radio"]#monthly {
  accent-color: #590016;
}
input[type="radio"]#quarterly {
  accent-color: #590016;
}
input[type="radio"]#yearly {
  accent-color: #590016;
}
@media (min-width: 600px) {
  body {
    background-color: #ffffff;
  }
  .container {
    background-color: #590016;
  }
}
