/* COLOR VARIABLE */
/* FONT VARIABLE */
/*OTHER VARIABLE */
.text-accent {
  color: #e51a6a;
}

.text-pink-light {
  color: #FF6090;
}

.bg-light-pink {
  background-color: #FFFBFC;
}

.tracking-wider {
  letter-spacing: 1.5px;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.congrats {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  padding: 3rem 0;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .congrats {
    font-size: 1.25rem;
    text-align: center;
    padding: 2rem 0;
  }
}

.firstRow {
  padding: 3rem 0 4rem;
}

@media screen and (max-width: 767px) {
  .firstRow {
    padding: 2rem 0 3rem;
  }
}

.firstRow .boxMessage {
  max-width: 720px;
  width: 100%;
  margin: auto;
}

.section-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: #e51a6a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}

.section-title {
  font-weight: 700;
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .section-title {
    font-size: 20px;
    text-align: center;
    line-height: 1.5;
  }
}

.section-title.fs-20 {
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .section-title.fs-20 {
    font-size: 18px;
    text-align: left;
  }
}

.section-line {
  height: 0.5px;
  background: rgba(0, 0, 0, 0.09);
}

.privacy-box .privacy-body {
  max-height: 200px;
  overflow-y: auto;
}

.privacy-box .privacy-body ul {
  padding-left: 20px;
}

.privacy-box .privacy-body ul li {
  list-style-type: disc;
}

.privacy-box .privacy-body::-webkit-scrollbar {
  width: 4px;
}

.privacy-box .privacy-body::-webkit-scrollbar-track {
  background: #F5F5F3;
}

.privacy-box .privacy-body::-webkit-scrollbar-thumb {
  background: #e51a6a;
  border-radius: 99px;
}

@media screen and (max-width: 767px) {
  .privacy-box .form-check-label {
    font-size: 14px;
    flex: 1;
  }
}

.custom-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.custom-checkbox:checked {
  background-color: #e51a6a;
  border-color: #e51a6a;
}

.custom-checkbox:focus {
  box-shadow: 0 0 0 0.25rem rgba(229, 26, 106, 0.25);
}

.form-disabled-state {
  opacity: 0.4;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.form-disabled-state.is-enabled {
  opacity: 1;
  pointer-events: auto;
}

.req-note {
  font-size: 12px;
  color: #6B6B67;
}

.badge-req {
  font-size: 10px;
  font-weight: 700;
  color: #e51a6a;
  background: #FBEAF0;
  padding: 2px 6px;
  border-radius: 99px;
}

.badge-opt {
  font-size: 10px;
  font-weight: 600;
  color: #6B6B67;
  background: #F0F0EE;
  padding: 2px 6px;
  border-radius: 99px;
}

.featured-card {
  background: linear-gradient(135deg, #1a0010 0%, #3D0021 100%);
  border-radius: 14px;
  padding: 18px 20px;
}

.featured-card .featured-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.featured-card .featured-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: background 0.15s;
}

.featured-card .featured-check:hover {
  background: rgba(255, 255, 255, 0.12);
}

.featured-card .featured-check span {
  font-size: 13px;
  font-weight: 600;
}

.featured-card .custom-radio-pink {
  width: 18px;
  height: 18px;
  border-radius: 50% !important;
  cursor: pointer;
}

.featured-card .custom-radio-pink:checked {
  background-color: #FF6090;
  border-color: #FF6090;
}

.featured-card .custom-radio-pink:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 96, 144, 0.25);
}

.custom-input {
  background-color: #F9F9F7;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  transition: all 0.2s ease;
}

.custom-input::placeholder {
  color: #B0B0AC;
}

.custom-input:focus {
  background-color: #fff;
  border-color: #e51a6a;
  box-shadow: 0 0 0 3px rgba(229, 26, 106, 0.1);
}

@media screen and (max-width: 767px) {
  .form-label {
    font-size: 15px;
  }
}

.btn-submit {
  background: #e51a6a;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.5px;
  width: 100%;
  max-width: 360px;
  border: none;
  transition: all 0.2s ease;
}

.btn-submit:hover, .btn-submit:focus {
  background: #B0003F;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(229, 26, 106, 0.35) !important;
}

.btn-submit:active {
  transform: translateY(0);
}

/*# sourceMappingURL=message.css.map */