/* Reset some default styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bs-btn-bg: #420083;
}

body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #333;
  position: relative;
  min-height: 100vh;
}

body:after {
  content: ""; /* Important to display pseudo-elements */
  position: fixed; /* Or absolute, based on your layout */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/bg_trial1.png"); /* Background image */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; /* Center the image */
  z-index: -1; /* Push the background behind other content */
}

body.select-plan-section {
  background: linear-gradient(
      90deg,
      rgba(217, 217, 217, 0.3) 0%,
      rgba(235, 235, 235, 0.8) 63.64%,
      #ffffff 100%
    ),
    url("../images/bg-image.png"); /* Adjust the path */
  background-repeat: no-repeat;
  min-height: 100vh;
}

.container {
  /* margin: 0 auto; */
  padding: 20px;
  padding-left: 4rem;
  padding-right: 4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  min-height: 100vh;
}

.container:has(form.current_plan_selection) {
  display: flex;
  justify-content: center;
  /* width: fit-content; */
}

header {
  text-align: center;
  /* margin-bottom: 10px; */
}

.logo {
  max-width: 200px;
  margin-bottom: 0.5rem;
}

.main-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

form.current_signup_form {
  width: 780px;
  /* flex: 1; */
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(255, 255, 255, 0.6) 0%,
      rgba(255, 255, 255, 0.4) 100%
    )
    /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
  padding: 22px 60px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group-row {
  display: flex;
  gap: 20px;
}

.form-group-row .form-group {
  flex: 1;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
}

.required-highlighter {
  color: red;
}

input,
select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

.phone-input {
  display: flex;
  gap: 8px;
}

.phone-input select {
  width: auto;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.checkbox-label .links {
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  color: black;
  text-decoration: none;
}

.checkbox-label input {
  margin-right: 8px;
  width: auto;
}

.submit-button {
  width: 100%;
  background-color: #913bef;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 2rem;
  font-size: 16px;
  cursor: pointer;
}

.already-login {
  font-weight: 400;
  font-size: 16px;
  line-height: 18.96px;
  letter-spacing: 0%;
  text-align: center;
  margin-top: 1rem;
  color: black;
}
.already-login a {
  text-decoration: none;
}
.already-login span {
  font-weight: 600;
  font-size: 16px;
  line-height: 18.96px;
  letter-spacing: 0%;
  color: #913bef;
}

.info-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-between;
  padding-left: 2rem;
  max-width: 990px;
}

.info-container .footer {
  font-weight: 700;
  display: flex;
  justify-content: space-between;

  font-weight: 700;
  font-size: 18px;
  line-height: 21.33px;
  letter-spacing: 0%;
  max-width: 990px;
}

.info-container .footer a.links {
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  color: black;
  text-decoration: none;
}

.info-container .footer .normal {
  font-family: Rubik;
  font-weight: 400;
  font-size: 18px;
  line-height: 21.33px;
  letter-spacing: 0%;
  text-align: right;
}

.info-container .footer > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-container .footer > div > .dot {
  width: 5px;
  height: 5px;
  background-color: black;
  border-radius: 100%;
}

.info-container-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-container-header p:first-child {
  font-family: Rubik;
  font-size: 42px;
  font-weight: 600;
  line-height: 49.77px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.info-container-header p:last-child {
  font-family: Rubik;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.info-item-wraper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.7) 100%
    )
    /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  /* text-align: center; */
}

.info-icon {
  max-width: 48px;
  margin-bottom: 16px;
}

.info-item h3 {
  margin-bottom: 12px;
  font-family: Rubik;
  font-size: 20px;
  font-weight: 600;
  line-height: 23.7px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.info-item p {
  font-family: Rubik;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;

  color: black;
}

@media (max-width: 768px) {
  .container {
    padding: 20px;
  }

  .main-content {
    flex-direction: column;
  }

  form {
    padding: 20px;
  }

  .form-group-row {
    flex-direction: column;
  }
}
.d-none {
  display: none;
}

/*---------------------------------- Plan Selection Section Style -------------------------------------------------*/
/* Plan Card Styles */
.plan-card {
  border: 2px solid #ccc;
  border-radius: 12px;
  background-color: #f9f9f9;
  cursor: pointer;
  padding: 16px;
  /* margin: 10px; */
}

.plan-card.checked {
  border-color: #007bff;
}

.hidden-radio {
  display: none;
}

.card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plan-details {
  display: flex;
  align-items: center;
  gap: 12px;
}

.plan-indicator {
  width: 20px;
  height: 20px;
  border: 2px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-indicator.checked {
  border-color: #007bff;
}

.indicator-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.plan-info {
  display: flex;
  flex-direction: column;
}

.plan-description {
  font-size: 20px;
  font-weight: 500;
  margin: 0;

  font-family: Rubik;
  font-size: 20px;
  font-weight: 700;
  line-height: 23.7px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.plan-label {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  font-family: Rubik;
  font-size: 16px;
  font-weight: 700;
  line-height: 18.96px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.price-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.original-price {
  position: relative;
  width: fit-content;
}

.price {
  color: #420083;
  margin: 0;
}

.price-line {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #ff0000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-22deg);
}

.discounted-price {
  color: #007bff;
  margin-top: 4px;
}

.discounted-price .price {
  font-size: 24px;
  font-weight: bold;
}

/* ################################ */
/* General Styles */

/* List Plan Container */
.list-plan-container {
  width: 800px;
  /* margin: auto; */

  /* height: 706px; */
  /* overflow: hidden; */
  position: relative;
  /* overflow-y: scroll; */
  border-radius: 16px;
  background-color: white;
  padding: 30px 40px;
}

.mt-5 {
  margin-top: 2rem;
}

/* Loader Container */
.loader-container {
  display: flex;
  justify-content: center;
}

.loader-icon {
  fill: var(--bs-btn-bg);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Content Section */
.content {
  position: relative;
}

.rounded-delete-icon {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}

.section-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* Plan Type Section */
.plan-type-section {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin: 20px 0;
}

.plan-type-label {
  font-size: 18px;
  font-weight: 500;
  color: var(--bs-btn-bg);
}

/* Radio Buttons Section */
.radio-buttons-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 2rem;
}

.radio-button {
  display: flex;
  align-items: center;
  gap: 8px;
}

.radio-button input[type="radio"] {
  display: none;
}

.radio-button label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.plan-label {
  font-size: 14px;
  font-weight: 500;
}

.plan-description {
  font-size: 18px;
  color: #420083;
}

.plan-price {
  font-size: 14px;
  color: #333;
  text-decoration: line-through;
}

.plan-discount-price {
  font-size: 18px;
  font-weight: bold;
  color: var(--bs-btn-bg);
}

/* Continue Button Section */
.continue-button-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 15px;
}

.continue-button {
  background-color: var(--bs-btn-bg);
  color: white;
  border-radius: 8px;
  padding: 0px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  border: none;
  font-size: 18px;
  height: 50px;
}

.continue-button:hover {
  opacity: 0.9;
}

.right-arrow-icon {
  fill: white;
  width: 16px;
  height: 16px;
}

/* Main Loading */
.main-loading {
  display: none; /* Hidden by default */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  justify-content: center;
  align-items: center;
}

/* ### */
/* General Styles */

/* Trial Info Section */
.trial-info {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-bottom: 4px;
}

.trial-info p {
  margin: 0;
  font-size: 14px;
  color: #333;
  font-family: Rubik;
  font-size: 16px;
  font-weight: 700;
  line-height: 18.96px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.trial-info .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: black; /* Replace with actual color */
}

/* Plan Selection Section */
.plan-selection {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin: 20px 0;
}

.single-site {
  font-size: 18px;
  font-weight: 500;
  color: var(--bs-btn-bg);
  margin: 0;
}

.toggle-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
}

.toggle-input {
  display: none;
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #374151; /* Gray-700 */
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.slider::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background-color: white;
  border: 1px solid #d1d5db; /* Gray-300 */
  border-radius: 50%;
  transition: transform 0.3s;
}

.toggle-input:checked + .slider {
  background-color: rgb(145 57 237) !important;
}

.toggle-input:checked + .slider::before {
  transform: translateX(20px);
}

.multisite {
  font-size: 18px;
  color: #333;
  margin: 0;
}

.info-container-header-sub-text {
  display: flex;
  gap: 10px;
  align-items: center;
}

.iti {
  width: 100%;
}

.container_tail {
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 1rem !important; /* Equivalent to px-4 */
  padding-right: 1rem !important;

  /* Max-widths for different breakpoints */
  max-width: 640px !important; /* sm */
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  min-height: 100vh !important;
  transform: scale(-20);
}

@media (min-width: 640px) {
  /* sm */
  .container_tail {
    max-width: 640px !important;
  }
}

@media (min-width: 768px) {
  /* md */
  .container_tail {
    max-width: 768px !important;
  }
}

@media (min-width: 1024px) {
  /* lg */
  .container_tail {
    max-width: 1024px !important;
  }
}

@media (min-width: 1280px) {
  /* xl */
  .container_tail {
    max-width: 1280px !important;
  }
}

@media (min-width: 1536px) {
  /* 2xl */
  .container_tail {
    max-width: 1536px !important;
  }
}

/* .paln-panel-section{

    display: flex;
    flex-direction: column;
    align-items: center;
} */
