* {
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  html {
    scroll-behavior: smooth;
  }
  :root {
    --bg-color: white;
    --text-color: #000;
    --text-color2: #3a3d47;
    --text-color3: #b8becd;
    --btn-bg: rgba(74,108,247,1) ;
    --icons-bg: #6c63ff;
    --btn-text: white;
    --btn-text-apple:white;
    --nav-bg: white;                         
    --nav-bg-rgb: 255, 255, 255;
    --nav-hr: rgba(0, 0, 0, 0.12);
    --divcard: white;
    --divcard2:rgb(240,242,249);
    --banner-card: linear-gradient(135deg, #89a2ff54 0%, #89a2ff26 100%);   /* 33% opacity and 15% opacity */
    --footer: rgba(198, 199, 205, 0.329);
    --form-btn-text:rgb(248, 248, 248);
    --form-btn-border:rgb(229, 231, 235);
  }
  body.dark-mode {
    --bg-color: rgba(18,23,35,1);
    --text-color: white;
    --text-color2: #9699a6;
    --text-color3: #9699a6;
    --btn-text-apple:black;
    --nav-bg: rgba(30,35,46,1);
    --nav-bg-rgb: 30, 35, 46; 
    --nav-hr: rgba(255, 255, 255, 0.12);
    --divcard: rgba(30,35,46,1);
    --divcard2: rgba(30,35,46,1.2);
    --footer:rgba(30,35,46,1.2);
    --form-btn-text:rgb(44, 48, 59);
    --form-btn-border:rgb(44, 48, 59);
  }
   body {
    margin: 0;
    /* padding-top: 55px; */
    font-family: 'Inter', sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
  }
 
  /* navbar layout */

  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(var(--nav-bg-rgb), 0.8);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1000;
    transition: background-color 0.3s ease;
  }
  
  .navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1500px;  /* whatever your screen width */
    margin: 0 auto;
    width: 100%;
    padding: 10px 32px;
    min-height: 70px;
  }
  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0px 300px 0px 0px;
    padding: 0;
  }
  .nav-links li a {
    text-decoration: none;
    font-size: 1.15rem;
    color: var(--text-color2);
    font-weight: 500;
    transition: color 0.2s;
  }

  .nav-links li a:hover {
    color: var(--btn-bg);
  }

  .nav-links li a.active {
    color: var(--btn-bg);
  }

  .navbar.scrolled 
  {
  border-bottom: 2px solid var(--nav-hr);
  }

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 2rem;
  color: var(--text-color);
  text-decoration: none;
  letter-spacing: -1px;
}

.logo .icon {
  height: 44px;
  width: 44px;
  margin-right: 10px;
  margin-left: 45px;
}
.button-wrapper {
  display: flex;
  align-items: center;
  gap: 0px;
}
.btn {
  padding: 15px 35px;
  border: none;
  border-radius: 3px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}
.signin-btn {
  background: transparent;
  color: var(--text-color);
  font-weight: 500;
  text-decoration: none;
}
.signin-btn:hover {
  color: var(--btn-bg);
  background: transparent; 
}
.signup-btn {
  background: var(--btn-bg);
  color: var(--btn-text);
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(74,108,247,0.12);
  transition: background 0.2s;
  text-decoration: none;
}
.signup-btn:hover {
  background: rgba(74, 108, 247, 0.8); 
  color: var(--btn-text);
}
.theme-icon-btn {
  padding: 7px 9px;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  margin-left: 10px;
  margin-right: 85px;
  color: var(--text-color2);
  transition: background 0.15s;
}
.theme-icon-btn:hover {
  background: rgba(74,108,247,0.12);
}

/* dropdown menu layout */

.dropbtn {
  background: none;
  border: none;
  color: var(--text-color2);
  font: inherit;
  cursor: pointer;
  padding: 0 4px 4px 0;
  font-weight: 500;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  outline: none;
  transition: color 0.3s;
}

/* On hover/focus, match nav link hover color */
.dropbtn:hover,
.dropbtn:focus {
  color: var(--btn-bg);
}

.dropbtn:hover::after,
.dropbtn:focus::after {
  width: 100%;
}

/* icon color matches text or uses btn color on hover */
.dropbtn i.fa-caret-down {
  font-size: 1.1rem;
  color: inherit;
}

/* Dropdown menu base style */
.dropdown {
  position: relative;
}
.dropdown-content {
  display: block;           /* always on page, hidden by visibility */
  position: absolute;
  left: 0;
  top: 120%;
  min-width: 200px;
  background: var(--nav-bg);
  border-radius: 8px;
  box-shadow: 0 6px 32px rgba(74,108,247,0.11);
  z-index: 1100;
  padding: 10px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

/* Dropdown menu links */
.dropdown-content li a {
  color: var(--text-color2);
  display: block;
  padding: 10px 22px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 400;
  border: none;
  background: none;
  transition: background 0.17s, color 0.17s;
  border-radius: 0;
}

/* Show dropdown on hover/focus-within */
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
  opacity: 1;
  visibility: visible;
}

/* Hover for dropdown links */
.dropdown-content li a:hover,
.dropdown-content li a:focus {
  color: var(--btn-bg);
  background: rgba(74,108,247,0.07);
}


/* hero section layout */

.hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 700px;
  padding-top: 20px;
  padding-bottom: 30px;
  background:
  radial-gradient(
      ellipse 50% 50% at 80% 0%,
      #89A2FF55 20%,
      transparent 100%
    ),
    linear-gradient(
      120deg,
      transparent 50%,
      #89A2FF22 100%
    ),
  var(--divcard);  

  overflow: hidden;
  width: 100%;
}
.hero-card {
  background: none; 
  box-shadow: none; 
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

/* svg layout */

.hero-svg-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 125px;       /* wavy height */
  overflow: hidden;
  z-index: 0;
  pointer-events: none;

}
.wave-svg {
  width: 100%;
  height: 100%;
  display: block;
  transform: scaleY(-1);   /* Flip vertically */
  opacity: 0.3;
}

.hero-text{
  text-align: center;
  margin-top: 0;
}
.hero-text h1 {
  color: var(--text-color);
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.1;
  
}
.hero-text p {
  color: var(--text-color2);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
  
}
.hero-buttons {
  display: flex;
  gap: 17px;
  justify-content: center;
  margin-top: 18px;
}
.btn_1{
  padding: 18px 38px;
  border: none;
  border-radius: 3px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.bt-a{
background: var(--btn-bg);
color: var(--btn-text);
}
.bt-b{
background: var(--text-color2);
color: var(--btn-text);
}
.bt-a:hover {
  background: rgba(74, 108, 247, 0.8); 
}
.bt-b:hover {
  background: rgba(58, 61, 71, 0.85);
}

/* how it works section */

.working{ 
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 0px 20px 0px;
  text-align: center;
}
.working-text{
  text-align: center;
  margin-top: 0;
}
.working-text h1 {
  color: var(--text-color);
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.1;
}
.working-text p {
  color: var(--text-color2);
  font-size: 1.24rem;
  font-weight: 500;
  line-height: 1.5;
}

.steps-section {
  width: 100%;
  background: none;
  
}

.steps-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.step-card {
  flex: 1 1 250px;
  max-width: 320px;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 10px 0 10px;
}

.step-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f3fe;
  border-radius: 18px;
}

.step-icon i {
  font-size: 2.5rem;
  color: var(--icons-bg);
}

.step-icon:hover {
  background-color: var(--icons-bg);
}

.step-icon:hover i {
  color: white;
}

.step-title {
  font-family: inherit;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 12px 0 10px 0;
  text-align: center;
}

.step-desc {
  color: var(--text-color2);
  font-size: 1.1rem;
  text-align: center;
  font-weight: 500;
  max-width: 90%;
}

/* banner layout */

.banner{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 150px 0; 
}            

.banner-card{
  display: flex;
  align-items: flex-start;
  background:  var(--banner-card);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(112,131,245,0.15);
  padding: 50px 70px;          
  width: 100%;                                           
  max-width: 1150px;          
  margin: 0px 24px;          
  gap: 220px;
}

/* flex-direction: column for banner-left not needed as 
by default banner-left stacks its children vertically */

.banner-text{
  margin-top: 20px;
}
.banner-text h1 {
  color: var(--text-color);
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
}

.banner-text p {
  color: var(--text-color2);
  font-size: 1.24rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}
.banner-card img {
  flex-shrink: 0;
  width: 250px;
  max-width: 100%;
  height: auto;
}

 /* google play store and apple store icons layout */

 .store-buttons {
  display: flex;
  gap: 16px;
  margin-top: 130px;
}

.store-btn {
  display: flex;
  align-items: center;
  border: none;
  border-radius: 3px;
  padding: 12px 28px;
  text-decoration: none;
  transition: box-shadow 0.2s, background 0.2s;
  box-shadow: 0 2px 8px rgba(30, 42, 75, 0.08);
  cursor: pointer;
}

.google-btn {
  background: var(--icons-bg);
  color: var(--btn-text);
}
.apple-btn {
  background: var(--text-color);
  color: var(--btn-text-apple);
}
.google-btn:hover,
.apple-btn:hover {
  box-shadow: 0 8px 28px rgba(137,162,255,0.18),   /* soft blue shadow */
              0 2px 12px rgba(70, 85, 130, 0.08);  /* subtle dark shadow for depth */
  transform: translateY(-2px) scale(1.035);
  transition: box-shadow 0.2s, transform 0.2s;
}

.store-btn .icon {
  margin-right: 14px;
  display: flex;
  align-items: center;
}

.store-btn .icon i {
  font-size: 2rem;
}

.btn-text .btn-small {
  font-size: 0.9rem;
  opacity: 0.85;
  display: block;
  line-height: 1;
}

.btn-text .btn-big {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.1;
  display: block;
}


/* about section layout */

.about-section {
  width: 100%;
  background: none;
  padding: 70px 0 140px 0; 
  position: relative;
}

.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
  max-width: 1600px;
  margin: 0 auto;
}

.about img {
  flex-shrink: 0;
  width: 700px;
  max-width: 100%;
  height: auto;
}

.about-text {
  flex: 1;
  min-width: 300px;
  margin-right: 100px;
}

.about-text h1 {
  color: var(--text-color);
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
}

.about-text p {
  color: var(--text-color2);
  font-size: 1.24rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

/* main features section */

.feature{ 
  margin: 0 auto;
  padding: 60px 0px 250px 0px;
  text-align: center;
  background-color: var(--divcard2);
}
.feature-text{
  padding: 0 300px 60px 300px;
  text-align: center;
  margin-top: 0;
}
.feature-text h1 {
  color: var(--text-color);
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.1;
}
.feature-text p {
  color: var(--text-color2);
  font-size: 1.24rem;
  font-weight: 500;
  line-height: 1.5;
}

/* feature card layout */

.feature-box {
  width: 100%;
  background: var(--bg-color);
  border-radius: 10px;
  box-shadow: 0 10px 65px rgba(112, 131, 245, 0.5);
  padding: 70px 70px;                                                   
  max-width: 1150px; 
  margin: auto;          
}
.feature-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.feature-card {
  flex: 1 1 250px;
  max-width: 320px;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 10px 0 10px;
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f3fe;
  border-radius: 18px;
}

.feature-icon i {
  font-size: 2.5rem;
  color: var(--icons-bg);
}

.feature-icon:hover {
  background-color: var(--icons-bg);
}

.feature-icon:hover i {
  color: white;
}

.feature-title {
  font-family: inherit;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 12px 0 10px 0;
  text-align: center;
}

.feature-desc {
  color: var(--text-color2);
  font-size: 1.1rem;
  text-align: center;
  font-weight: 500;
  max-width: 90%;
}

/* pricing section layout */

.pricing{ 
  margin: 0 auto;
  padding: 70px 0px 250px 0px;
  text-align: center;
  background-color: var(--bg-color);
}
.pricing-text{
  padding: 0 300px 100px 300px;
  text-align: center;
  margin-top: 0;
}
.pricing-text h1 {
  color: var(--text-color);
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.1;
}
.pricing-text p {
  color: var(--text-color2);
  font-size: 1.24rem;
  font-weight: 500;
  line-height: 1.5;
}
.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap; 
  margin: 0 auto;
  max-width: 1300px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--divcard);
  border-radius: 10px;
  padding: 60px 32px;
  min-width: 300px;
  max-width: 360px;
  flex: 1 1 320px;
  position: relative;        
  overflow: hidden;        
  box-shadow: 0 4px 32px rgba(20, 20, 40, 0.2);
}


.pricing-card .decor-svg {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1; 
  pointer-events: none; 
}

/* pricing card inner content layout */


.pricing-card-header {
  width: 100%;
  margin-bottom: 20px;
}

.plan-title {
  color: var(--text-color);
  font-size: 1.28rem;
  font-weight: 700;
  display: block;
  margin-bottom: 16px;
  text-align: left;
}

.plan-price {
  display: flex;
  align-items: baseline;
}

.price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-color);
  margin-right: 8px;
}

.price-duration {
  color: var(--text-color3);
  font-size: 1.1rem;
  font-weight: 500;
}

hr {
  border: none;
  border-top: 1px solid var(--text-color3);
  width: 100%;
  margin: 24px 0 40px 0;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
  width: 100%;
}

.plan-features li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  color: var(--text-color2);
  font-size: 1.07rem;
  font-weight: 500;
}

.dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  margin-right: 14px;
}

.dot-blue {
  background: var(--btn-bg);
}

.dot-grey {
  background: #cdcfd8;
}

.pricing-btn {
  display: inline-block;
  cursor: pointer;
  margin: 0 auto;
  padding: 18px 36px;
  border-radius: 3px;
  border: none;
  background: var(--btn-bg);
  color: var(--btn-text);
  font-size: 1rem;
  font-weight: 500;
  margin-left: 0;
}
.pricing-btn:hover {
  background: rgba(74, 108, 247, 0.8); 
}

/* footer layout */

.footer-section {
  background: var(--footer);
  padding: 5rem 5% 2rem 5%;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 300px;
}
.left-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 400px;
}
.left-side .logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 2rem;
  color: var(--text-color);
  text-decoration: none;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.left-side .logo .icon {
  height: 44px;
  width: 44px;
  margin-right: 10px;
  margin-left: 0; 
}
.left-side p {
  color: var(--text-color2);
  font-size: 1.13rem;
  margin-left: 0;
}

.footer-columns {
  display: flex;
  gap: 70px;
  flex-wrap: wrap;
}
.footer-col h3 {
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text-color);
  margin-top: 0;
}
.footer-col a {
  display: block;
  color: var(--text-color2);
  margin-bottom: 10px;
  font-size: 1rem;
  text-decoration: none;
}
.footer-col a:hover {
  color: var(--btn-bg);
}

#footer-hr{
  border: none;
  border-top: 1px solid var(--text-color3);
  width: 100%;
  margin: 50px 0 50px 0;
}

.footer-bottom {
  text-align: center;
}
.footer-bottom p {
  color: var(--text-color);
  font-size: 1rem;
}
.social-links {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.social-links a {
  color: var(--btn-bg);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}
.social-links a:hover {
  color: var(--text-color);
  transform: translateY(-3px);
}

/* error page layout  */

.error-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 75vh;
  padding: 120px 0 50px 0;
  max-width: 750px;
  margin: auto;
}

.error-code {
  font-size: 9rem;
  font-weight: 800;
  color: #7796ff;
  letter-spacing: 4px;
  opacity: 0.25;
  text-align: center;
}

.error-title {
  color: var(--text-color);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.error-desc {
  color: var(--text-color2);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin-top: 0;
}

.error-btn {
  display: inline-block;
  cursor: pointer;
  padding: 18px 36px;
  border-radius: 3px;
  border: none;
  background: var(--btn-bg);
  color: var(--btn-text);
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 15px 14px rgba(50,84,204,0.12);
  margin-bottom: 30px;
  margin-top: 30px;
  text-decoration: none;
}
.error-btn:hover {
  background: rgba(74, 108, 247, 0.8); 
}

/* sign in & sign up page layout */

.signin-container {
  min-height: 72vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-color);
  padding: 140px 0 70px 0;
}

.signin-form {
  width: 100%;
  max-width: 370px;
  background: var(--divcard);
  border-radius: 6px;
  padding: 60px 80px;
  box-shadow: 0 4px 32px rgba(20, 20, 40, 0.08);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}

.signin-form .form-btn,
.signin-form .main-btn,
.signin-form input[type="email"],
.signin-form input[type="password"],
.signin-form input[type="text"] {
  box-sizing: border-box;  /*ensures placeholder and form-btn width is same */
}                         

.signin-form h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0;
  text-align: center;
}
.signin-form .subtitle {
  color: var(--text-color2);
  font-size: 1.07rem;
  margin-bottom: 20px;
  margin-top: 0;
  text-align: center;
}
.form-btn {
  width: 100%;
  display: flex;
  align-items: center;
  border: 1px solid var(--form-btn-border);
  background: var(--form-btn-text);
  gap: 15px;
  padding: 12px 80px;
  font-size: 1.05rem;
  color: var(--text-color2);
  border-radius: 3px;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 0;
  transition: box-shadow 0.18s;
  box-shadow: 0 2px 16px rgba(61,87,246,0.04);
}
.form-btn.github .form-icon,
.form-btn.google .form-icon {
  height: 22px;
  width: 22px;
}
.form-btn:hover {
  box-shadow: 0 4px 24px rgba(77,108,242,0.14);
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 22px 0 10px 0;
  color: var(--text-color2);
  font-size: 1.05rem;
  gap: 12px;
  position: relative;
}
.divider:before,
.divider:after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--text-color2);
}
.divider span {
  padding: 0 9px;
}

label {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 6px;
  margin-top: 4px;
  font-weight: 500;
}

input[type="email"],
input[type="password"],
input[type="text"] {
  width: 100%;
  padding: 14px 14px;
  font-size: 1rem;
  background: var(--form-btn-text);
  border: 1px solid var(--form-btn-border);
  border-radius: 3px;
  margin-bottom: 8px;
  outline: none;
  color: var(--text-color);
  transition: border-color 0.2s;
}
input[type="email"]:focus,
input[type="password"]:focus,
input[type="text"]:focus {
  border: 1.5px solid var(--btn-bg);
}
.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  margin-bottom: 8px;
  gap: 8px;
}
.keep-signed-in input[type="checkbox"] {
  margin-right: 7px;
}
.forgot-link {
  color: var(--btn-bg);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.18s;
}
.forgot-link:hover {
  text-decoration: underline;
  color: rgba(74, 108, 247, 0.8); 
}

.agreement-label {
  display: flex;
  align-items: flex-start;
  gap: 12px; 
  font-weight: 400;
  color: var(--text-color2);
  cursor: pointer;
  font-size: 0.95rem;
  margin-bottom: 0;
}
.legal-link {
  color: var(--btn-bg);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.18s;
}
.legal-link:hover {
  text-decoration: underline;
  color: rgba(74, 108, 247, 0.8); 
}

.main-btn {
  width: 100%;
  padding: 15px 35px;
  background: var(--btn-bg);
  color: var(--btn-text);
  border: none;
  border-radius: 3px;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 5px;
  cursor: pointer;
  box-shadow: 0 2px 18px rgba(74,108,247,0.12);
  transition: background 0.2s;
  margin-bottom: 4px;
}
.main-btn:hover {
  background: rgba(74, 108, 247, 0.8); 
  color: var(--btn-text);
}
.signup-link {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-color2);
  margin-top: 7px;
}
.signup-link a {
  color: var(--btn-bg);
  font-weight: 500;
  text-decoration: none;
  margin-left: 4px;
  transition: color 0.2s;
}
.signup-link a:hover {
  text-decoration: underline;
  color: rgba(74, 108, 247, 0.8); 
}

