* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #407bff;
  --hover-blue: #357ae8;
  --dark-blue: #06359d;
  --white: #ffffff;
  --pink-status: #f48f8f;
  --green-status: #66bb6a;
  --yellow-status: #ffa726;
  --gray-status: #bdbdbd;
  --yellow-chart: #f5c518;
  --subscription-highlight: #21a921 ;

  --text-light: rgba(255, 255, 255, 0.9);
  --text-dark: #333333;
  --text-gray: #9e9e9e;
  --text-error: lightpink;

  /* --light-bg: #F5F5F5; */
  --card-bg: #ffffff;
  --button-bg: #f1f1f1;
--button-danger:#e04a6a;
  --border-radius: 20px;
  --progress-bg: #e8ecf5;

  --fs-base: 14px;
  --fs-medium: 12px;
  --fs-small: 10px;
  --fs-auth-input: 15px;
  --fs-client-input: 13px;

  --container-width: 400px;
  --navbar-height: 80px;

  --blue-light: rgb(54, 112, 243);
  --blue-dark: rgb(15, 69, 187);
}


body {
  font-family: "Inter", sans-serif;
  height: 100vh;
  height: 100dvh;
  display: flex;
  justify-content: center;
  font-size: var(--fs-base);
  background: var(--primary-blue);
  /* background: linear-gradient(
    to bottom,
    var(--blue-light) 0%,
    var(--blue-dark)) 100%; */
  /* background: transparent; */
  opacity: 0.5;
  filter: brightness(0.95);
  animation: iosFade 0.5s ease-in-out forwards;
}

/* 
body {
  animation: fadeIn 0.8s ease-in-out forwards;
}


@keyframes fadeIn {
  from {
    opacity: 0.8;
  }
  to {
    opacity: 1;
  }
} */

/* body {
  opacity: 0.6;
  filter: blur(0.5px);
  animation: smoothIn 1s ease forwards;
}

@keyframes smoothIn {
  to {
    opacity: 1;
    filter: blur(0);
  }
} */

@keyframes iosFade {
  to {
    opacity: 1;
    filter: brightness(1);
  }
}

.widespace-area{
  background: var(--primary-blue);
  width: 100vw;
  height:fit-content;
  /* background: linear-gradient(
  to bottom,
  var(--blue-light),
  var(--blue-dark)); */
}

.container {
  width: 100%;
  /* max-width: 360px; */
  max-width: var(--container-width);
  /* border: 1px solid black; */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  /* background: var(--primary-blue); */
  margin: auto;
}

.logo {
  text-align: center;
  margin: 50px 0 30px;
  color: var(--white);
}

.logo img {
  width: 80px;
}

.content {
  padding: 0 35px;
  margin: 10% 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* height: calc(100dvh - 7dvh - 10dvh - 25vh); */
  /* overflow: auto; */
  /* flex: 1; */
}

h1 {
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.blue-heading {
  color: var(--primary-blue);
  margin-bottom: 20px;
}

p {
  line-height: 1.3;
  margin-bottom: 35px;
  color: var(--text-light);
  font-weight: 200;
}

strong {
  font-weight: 600;
  line-height: 1.6;
}

.link {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: var(--text-light);
}

/* .link:hover {
  opacity: 0.8;
} */

.bottom-content {
  padding: 50px 0;
}

/* .bottom-links {
  text-underline-offset: 2px;
} */

.bottom-content .left {
  float: left;
}

.bottom-content .right {
  float: right;
}

.bottom-link.disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}

.bottom-link {
  color: var(--white);
  text-decoration: underline;
  letter-spacing: 0.5px;
  transition: opacity 0.3s ease;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 300;
  background: transparent;
  border: none;
  text-underline-offset: 3px;
  outline: inherit;
  appearance: none;
}

/* .bottom-link:hover {
  opacity: 0.8;
} */

/* Subscrption Charges  */

.price {
  display: flex;
  align-items: baseline;
}

.price h2 {
  font-size: 24px;
  font-weight: 200;
  color: var(--white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin:0px 3px;
}

.plan-currency {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3px;
}

.price p {
  margin-bottom: unset;
}

.extra-charges {
  font-size: var(--fs-small);
  margin-bottom: 10px;
}

/* Scrollbar  */
/* ::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 100px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.4) transparent;
} */

/* Hide scrollbar for Chrome, Safari, Edge */
::-webkit-scrollbar {
  display: none;
}

* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* Success Screen  */
.success-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  width: 100%;
}

/* icon circle */
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #dcfce7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.success-icon svg {
  width: 30px;
  height: 30px;
  stroke: #16a34a;
  fill: none;
}

/* title */
.success-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-light);
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

/* body text */
.success-body {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 240px;
}

/* button */
.success-btn {
  padding: 12px 32px;
  border: none;
  border-radius: 24px;
  background: #4a90ff;
  color: white;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

/* .success-btn:hover{
  background:#3b7ae0;
} */

.success-btn:active {
  transform: scale(0.97);
}

/* check animation */
.success-check-path {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: drawCheck 0.45s ease-out 0.1s forwards;
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}




/* ==========================================
   SUBSCRIPTION BANNER
========================================== */

#subBanner {
  width: 100%;
}

.subscription-banner {
  display: none;
  align-items: center;
  gap: 12px;
  border: 1.5px solid rgba(74, 144, 255, 0.22);
  /* margin-bottom: 12px; */
  animation: bannerFadeIn 0.3s ease;
  cursor: pointer;
  background: var(--white);
  color: var(--text-dark);
  padding: 16px 18px;
  border-radius: var(--border-radius);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;

}

.subscription-banner.show{
  display: flex;
}

/* .subscription-banner.bg-white{
  background: var(--subscription-highlight);
} */

@keyframes bannerFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sub-banner-icon {
  border: 1px solid var(--white);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  color: var(--white);
  background: #f77373;
    box-shadow: 
    0 4px 10px rgba(255, 90, 90, 0.25),
    0 0 0 4px rgba(255, 90, 90, 0.08);
}

.sub-banner-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
  cursor: pointer;
}

.sub-banner-title {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
  font-weight: 300;
  padding:0 15px;
}


