:root {
  --brand: #2f7d68;
  --brand-dark: #205b4d;
  --brand-light: #eaf5f0;
  --ink: #17332c;
  --muted: #3c4b46;
  --soft: #f5f8f6;
  --line: #e3ebe7;
  --white: #fff;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.7
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.18
}

h1,
h2 {
  font-family: "Playfair Display", serif
}

.top-strip {
  background: var(--ink);
  color: #dce9e4;
  font-size: 13px;
  padding: 7px 0
}

.top-strip a {
  color: #fff
}

.site-header {
  box-shadow: 0 2px 18px rgba(23, 51, 44, .07);
  z-index: 1000
}

.navbar {
  min-height: 78px
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px
}

.brand-name {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -.5px
}

.brand-name span,
.footer-brand span {
  color: var(--brand)
}

.nav-link {
  font-weight: 600;
  color: #50625c !important;
  padding: 10px 13px !important
}

.nav-link:hover {
  color: var(--brand) !important
}

.btn-brand {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff
}

.btn-brand:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff
}

.text-brand {
  color: var(--brand) !important
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1.6px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 10px
}

.hero-section {
  background: linear-gradient(135deg, #f3faf7 0%, #fff 58%);
  /* padding: 82px 0 90px; */
  overflow: hidden
}

.hero-section h1 {
  font-size: clamp(46px, 6vw, 76px);
  letter-spacing: -2px;
  margin-bottom: 22px
}

.hero-section h1 span,
.inner-hero h1 span {
  color: var(--brand)
}

.hero-text {
  font-size: 18px;
  color: var(--muted);
  max-width: 570px
}

.hero-image-wrap {
  position: relative;
  padding: 16px
}

.hero-image-wrap>img {
  height: 540px;
  width: 100%;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 25px 60px rgba(23, 51, 44, .16)
}

.floating-card {
  position: absolute;
  left: -5px;
  bottom: 45px;
  background: #fff;
  border-radius: 18px;
  padding: 15px 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 15px 35px rgba(23, 51, 44, .15)
}

.floating-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand-light);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 20px
}

.floating-card strong,
.floating-card small {
  display: block
}

.floating-card small {
  color: var(--muted);
  font-size: 12px
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: #5c6e68;
  font-size: 13px;
  font-weight: 600
}

.hero-trust i {
  color: var(--brand)
}

/* .topic-bar {
  padding: 55px 0 65px;
  border-bottom: 1px solid var(--line)
} */

.section-space {
  padding: 85px 0
}

.bg-soft {
  /* background: var(--soft); */
  background-size: cover;
  background-position: center;
}

.section-heading h2 {
  font-size: 42px;
  margin: 0 0 10px
}

.section-heading p {
  color: var(--muted);
  /* max-width: 650px */
}

/* .topic-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 13px;
  transition: .25s;
  height: 100%
}

.topic-card:hover {
  border-color: #b9d8cb;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(23, 51, 44, .07)
} */

/* .topic-card i {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--brand-light);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 22px;
  flex: none
} */

/* .topic-card span {
  font-weight: 700;
  display: block
}

.topic-card small {
  display: block;
  color: var(--muted);
  font-size: 12px
} */

.feature-card {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 24px;
  background: #17332c
}

.feature-card>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s
}

.feature-card:hover img {
  transform: scale(1.03)
}

.feature-card:after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .78))
}

.feature-overlay {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 34px;
  color: #fff
}

.feature-overlay h3 {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  max-width: 680px;
  margin: 12px 0
}

.feature-overlay p {
  max-width: 700px;
  color: #e6eeeb
}

.category-pill {
  display: inline-block;
  background: #fff;
  color: var(--brand-dark);
  padding: 5px 11px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700
}

.read-link,
.mini-story a,
.article-card a,
.list-card a,
.wellness-card a {
  color: var(--brand);
  font-weight: 700
}

.feature-overlay .read-link {
  color: #fff
}

.mini-story {
  display: flex;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px
}

.mini-story:last-child {
  border-bottom: 0
}

.mini-story img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 18px;
  flex: none
}

.category-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--brand)
}

.mini-story h4 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin: 7px 0 12px
}

/* .article-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: .25s
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(23, 51, 44, .08)
} */

.article-card {
    position: relative;

    background: rgba(255, 255, 255, 0.055);

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-radius: 20px;

    overflow: hidden;

    height: 100%;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.article-card:hover {
    transform: translateY(-6px);

    border-color: rgba(103, 223, 178, 0.30);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35),
        0 0 30px rgba(103, 223, 178, 0.06);
}

.article-card::before {
    content: "";

    position: absolute;

    width: 140px;
    height: 140px;

    top: -70px;
    right: -70px;

    background: rgba(103, 223, 178, 0.12);

    border-radius: 50%;

    filter: blur(35px);

    pointer-events: none;
}

/* .article-card img {
  width: 100%;
  height: 220px;
  object-fit: cover
} */

.article-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;

    transition: transform .5s ease;
}

.article-card:hover img {
    transform: scale(1.05);
}

.article-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin: 8px 0 15px
}

.section-image {
  width: 100%;
  max-height: 580px;
  object-fit: cover
}

.display-title {
  font-size: 46px
}

.lead {
  color: var(--muted)
}

.check-list>div {
  display: flex;
  gap: 10px;
  margin: 12px 0;
  font-weight: 600
}

.check-list i {
  color: var(--brand)
}

/* .wellness-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 35px;
  border-radius: 20px;
  height: 100%
} */

.wellness-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 35px;
    border-radius: 20px;
    height: 100%;

    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);

    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);

    transition: all 0.3s ease;
}

.wellness-card:hover {
    background: rgba(255, 255, 255, 0.20);
    transform: translateY(-5px);
}

.wellness-card>i {
  font-size: 30px;
  color: var(--brand)
}

.wellness-card h4 {
  margin: 18px 0 10px
}

.wellness-card p {
  color: var(--muted)
}

.list-card {
  display: flex;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  height: 100%
}

.list-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--brand-light);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 23px;
  flex: none
}

.list-card h5 {
  margin: 7px 0 12px
}

.newsletter-section {
  padding: 35px 0 90px
}

.newsletter-box {
  background: var(--ink);
  color: #fff;
  border-radius: 28px;
  padding: 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px
}

.newsletter-box h2 {
  font-size: 38px;
  margin: 0 0 8px
}

.newsletter-box p {
  color: #cbd9d4;
  margin: 0
}

.newsletter-box .eyebrow {
  color: #a7d5c5
}

.newsletter-form {
  display: flex;
  gap: 10px;
  min-width: 390px
}

.newsletter-form .form-control {
  min-height: 50px
}

.site-footer {
  background: #122b24;
  color: #c7d5d0;
  padding: 65px 0 25px
}

.footer-brand {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: #fff
}

.footer-brand span {
  color: #8fc9b7
}

.site-footer h6 {
  color: #fff;
  margin-bottom: 16px
}

.site-footer .col-lg-2>a {
  display: block;
  color: #b9c9c3;
  font-size: 14px;
  margin: 7px 0
}

.site-footer .col-lg-2>a:hover {
  color: #fff
}

.site-footer p {
  max-width: 380px
}

.socials {
  display: flex;
  gap: 9px
}

.socials a {
  width: 38px;
  height: 38px;
  border: 1px solid #426057;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff
}

.socials a:hover {
  background: var(--brand);
  border-color: var(--brand)
}

.site-footer hr {
  border-color: #2e4840;
  margin: 40px 0 20px
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  color: #91a49e
}

.inner-hero {
  background: linear-gradient(135deg, #eef8f4, #fff);
  padding: 80px 0
}

.inner-hero.compact {
  padding: 65px 0
}

.inner-hero h1 {
  font-size: clamp(45px, 6vw, 70px);
  letter-spacing: -1px;
  max-width: 800px
}

.inner-hero p {
  font-size: 18px;
  color: var(--muted);
  /* max-width: 680px */
}

.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  height: 100%
}

.value-card>i {
  font-size: 30px;
  color: var(--brand)
}

.value-card h4 {
  margin-top: 20px
}

.value-card p {
  color: var(--muted)
}

.narrow-content {
  max-width: 720px
}

.auth-page {
  background: #f4f8f6;
  min-height: calc(100vh - 150px);
  padding: 70px 0
}

.auth-card,
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 38px;
  box-shadow: 0 14px 40px rgba(23, 51, 44, .06)
}

.auth-card h1 {
  font-size: 38px;
  margin: 10px 0
}

.auth-icon {
  width: 64px;
  height: 64px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 18px
}

.auth-card>.auth-icon {
  margin-left: auto;
  margin-right: auto
}

.form-control,
.form-select {
  border-color: #d9e4df;
  border-radius: 11px;
  min-height: 48px
}

.form-control:focus,
.form-select:focus {
  border-color: #7ab5a3;
  box-shadow: 0 0 0 .2rem rgba(47, 125, 104, .12)
}

.form-label {
  font-weight: 600;
  font-size: 14px
}

.password-wrap {
  position: relative
}

.password-toggle {
  position: absolute;
  right: 10px;
  top: 7px;
  border: 0;
  background: none;
  color: #6c7b76;
  padding: 7px
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0;
  color: #98a7a2;
  font-size: 12px
}

.divider:before,
.divider:after {
  content: "";
  height: 1px;
  background: var(--line);
  flex: 1
}

.subscribe-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(23, 51, 44, .1)
}

.subscribe-intro {
  background: var(--ink);
  color: #fff;
  padding: 48px;
  background-image: url(../img/subscribe-img.webp);
  background-size: cover;
  background-position: center;
}

.subscribe-intro h1 {
  font-size: 43px;
  margin: 10px 0 18px
}

.subscribe-intro p {
  color: #c9d7d2
}

.subscribe-points div {
  margin: 14px 0;
  color: #e6efeb
}

.subscribe-points i {
  color: #8fc9b7;
  margin-right: 8px
}

.form-heading h2 {
  font-size: 36px
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-top: 24px
}

.contact-item>span {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--brand-light);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex: none
}

.contact-item strong {
  display: block
}

.contact-item p {
  margin: 2px 0;
  color: var(--muted)
}

@media(max-width:991px) {
  .navbar-collapse {
    padding: 18px 0
  }

  .hero-section {
    padding: 60px 0
  }

  .hero-image-wrap {
    padding: 0
  }

  .hero-image-wrap>img {
    height: 430px
  }

  .newsletter-box {
    flex-direction: column;
    align-items: flex-start
  }

  .newsletter-form {
    width: 100%;
    min-width: 0
  }

  .footer-bottom {
    flex-direction: column
  }
}

@media(max-width:575px) {
  .top-strip {
    font-size: 11px
  }

  .top-strip .container>span {
    display: none
  }

  .top-strip .container {
    justify-content: center !important
  }

  .hero-section h1 {
    font-size: 45px
  }

  .hero-text {
    font-size: 16px
  }

  .hero-image-wrap>img {
    height: 350px
  }

  .floating-card {
    left: 8px;
    bottom: 25px
  }

  .section-space {
    padding: 60px 0
  }

  .section-heading h2 {
    font-size: 34px
  }

  .feature-card {
    height: 460px
  }

  .feature-overlay {
    padding: 24px
  }

  .feature-overlay h3 {
    font-size: 27px
  }

  .mini-story img {
    width: 120px;
    height: 120px
  }

  .newsletter-box {
    padding: 30px
  }

  .newsletter-box h2 {
    font-size: 31px
  }

  .newsletter-form {
    flex-direction: column
  }

  .auth-card,
  .form-card {
    padding: 25px
  }

  .subscribe-intro {
    padding: 32px
  }
}

/* new style */

.carousel-item {
    padding: 90px 0 90px;
    background-size: cover;
    background-position: center;
}
.banner_1
{
  background-image: url(../img/banner_1.webp);
}
.banner_2
{
  background-image: url(../img/banner_2.webp);
}
.banner_3
{
  background-image: url(../img/banner_3.webp);
}


.nutrition-bg
{
  background-image: url(../img/nutrition-bg.webp);
}

.wellness-bg
{
  background-image: url(../img/wellness-bg.webp);
}

.cta-bg
{
  background-size: cover;
    background-position: center;
  background-image: url(../img/cta-bg.webp);
}

.what-we-value
{
  background-size: cover;
    background-position: center;
  background-image: url(../img/what-we-value.webp);
}

/* ================================
   TOPIC SECTION - DARK THEME
================================ */

.topic-bar {
    position: relative;
    padding: 90px 0 100px;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(58, 190, 145, 0.10),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(100, 90, 255, 0.08),
            transparent 30%
        ),
        #08120f;
    border-bottom: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
}


/* subtle background grid */

.topic-bar::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size: 45px 45px;

    mask-image: linear-gradient(
        to bottom,
        transparent,
        black 20%,
        black 80%,
        transparent
    );

    pointer-events: none;
}


.topic-bar .container {
    position: relative;
    z-index: 2;
}


/* ================================
   SECTION HEADING
================================ */
.topic-bar
{
    h1 span {
      color: var(--brand-light) !important;
  }

  
  .section-heading .eyebrow , .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;

      padding: 7px 14px;

      border: 1px solid rgba(83, 211, 165, .25);
      border-radius: 50px;

      background: rgba(83, 211, 165, .07);

      color: #67dfb2;

      font-size: 11px;
      font-weight: 700;

      letter-spacing: .16em;
  }
  .section-heading h2 {
      margin-top: 18px;
      margin-bottom: 12px;

      color: #f5faf8;

      font-size: clamp(30px, 4vw, 46px);
      font-weight: 700;

      letter-spacing: -.04em;
  }


  .section-heading p {
      max-width: 600px;
      margin: 0 auto;

      color: #8fa59d;

      font-size: 15px;
  }
}






/* ================================
   TOPIC CARD
================================ */

.topic-card {
    position: relative;

    min-height: 155px;

    padding: 25px;

    display: flex;
    align-items: center;

    gap: 16px;

    text-decoration: none;

    border-radius: 22px;

    border: 1px solid rgba(255,255,255,.09);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.075),
            rgba(255,255,255,.025)
        );

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.06),
        0 15px 40px rgba(0,0,0,.18);

    overflow: hidden;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}


/* glow */

.topic-card::before {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    top: -60px;
    right: -60px;

    background: rgba(75, 210, 163, .16);

    border-radius: 50%;

    filter: blur(25px);

    transition: .4s;
}


/* hover */

.topic-card:hover {
    transform: translateY(-8px);

    border-color: rgba(83, 211, 165, .35);

    box-shadow:
        0 20px 50px rgba(0,0,0,.35),
        0 0 30px rgba(67, 211, 163, .06);
}


.topic-card:hover::before {
    transform: scale(1.5);
}


/* ================================
   ICON
================================ */

.topic-icon {
    position: relative;

    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    display: grid;
    place-items: center;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            rgba(78, 215, 166, .18),
            rgba(78, 215, 166, .05)
        );

    border: 1px solid rgba(78, 215, 166, .18);

    color: #63ddb0;

    font-size: 24px;

    transition: .35s;
}


.topic-card:hover .topic-icon {
    transform: scale(1.08) rotate(-4deg);

    background:
        linear-gradient(
            145deg,
            rgba(78, 215, 166, .28),
            rgba(78, 215, 166, .08)
        );

    box-shadow:
        0 8px 25px rgba(65, 211, 163, .12);
}


/* ================================
   CONTENT
================================ */

.topic-content {
    min-width: 0;
}


.topic-content span {
    display: block;

    color: #f3f8f6;

    font-size: 17px;
    font-weight: 700;

    letter-spacing: -.01em;
}


.topic-content small {
    display: block;

    margin-top: 5px;

    color: #81968f;

    font-size: 12px;
}


/* ================================
   ARROW
================================ */

.topic-arrow {
    width: 34px;
    height: 34px;

    margin-left: auto;

    flex: 0 0 34px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: #789189;

    border: 1px solid rgba(255,255,255,.08);

    background: rgba(255,255,255,.035);

    transition: .35s;
}


.topic-card:hover .topic-arrow {
    color: #08120f;

    background: #67dfb2;

    border-color: #67dfb2;

    transform: translate(3px, -3px);
}


/* ================================
   MOBILE
================================ */

@media (max-width: 575px) {

    .topic-bar {
        padding: 65px 0 75px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .topic-card {
        min-height: 135px;
        padding: 18px;

        gap: 12px;
    }

    .topic-icon {
        width: 48px;
        height: 48px;

        flex-basis: 48px;

        border-radius: 14px;

        font-size: 20px;
    }

    .topic-content span {
        font-size: 14px;
    }

    .topic-content small {
        font-size: 11px;
    }

    .topic-arrow {
        display: none;
    }
}

section.inner-hero.topic-bar p {
    font-size: 18px;
    color: #8fa59d;
    /* max-width: 680px; */
}

a.nav-link.active {
    color: var(--brand) !important;
}

.contact-container {
    background-color: aliceblue !important;
}

.logo-img
{
  width: 300px;
}

.alert{
    margin-top: 20px;
}





/* new css */

/* CAPTCHA Section */
.auth-field {
    margin-bottom: 20px;
}

.auth-field .form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* CAPTCHA Code + Refresh Button */
.auth-field .d-flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* CAPTCHA Code */
#captchaCode {
    min-width: 145px;
    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 18px;

    background: linear-gradient(
        135deg,
        #f8f9fa,
        #e9ecef
    ) !important;

    border: 1px solid #d9dee3;
    border-radius: 8px;

    font-size: 22px !important;
    font-weight: 700 !important;
    letter-spacing: 6px !important;

    color: #202124;

    user-select: none;
    position: relative;
    overflow: hidden;

    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.06);

    /* CAPTCHA style */
    font-family: "Courier New", monospace;
    font-style: italic;
}

/* Slight CAPTCHA visual effect */
#captchaCode::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.12);
    transform: rotate(-8deg);
    top: 50%;
    left: 0;
}

/* Refresh Button */
.auth-field button {
    width: 48px;
    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid #d9dee3;
    border-radius: 8px;

    background: #ffffff;
    color: #555;

    font-size: 24px;
    line-height: 1;

    cursor: pointer;

    transition: all 0.2s ease;
}

/* Hover */
.auth-field button:hover {
    background: #f1f5f9;
    border-color: #9ca3af;
    color: #111827;

    transform: rotate(15deg);
}

/* Click */
.auth-field button:active {
    transform: scale(0.94);
}

/* Input */
#captchaInput {
    width: 100%;
    height: 48px;

    margin-top: 10px !important;

    padding: 0 14px;

    border: 1px solid #d9dee3;
    border-radius: 8px;

    background: #ffffff;

    color: #222;
    font-size: 15px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

/* Placeholder */
#captchaInput::placeholder {
    color: #9ca3af;
}

/* Focus */
#captchaInput:focus {
    border-color: #2563eb;

    box-shadow:
        0 0 0 3px rgba(37, 99, 235, 0.10);

    background: #fff;
}

/* Error state - optional */
#captchaInput.captcha-error {
    border-color: #dc2626;

    box-shadow:
        0 0 0 3px rgba(220, 38, 38, 0.08);
}

/* Success state - optional */
#captchaInput.captcha-success {
    border-color: #16a34a;

    box-shadow:
        0 0 0 3px rgba(22, 163, 74, 0.08);
}


/* Mobile Responsive */
@media (max-width: 480px) {

    #captchaCode {
        min-width: 125px;
        height: 46px;

        font-size: 20px !important;
        letter-spacing: 5px !important;
    }

    .auth-field button {
        width: 46px;
        height: 46px;
    }

    #captchaInput {
        height: 46px;
        font-size: 14px;
    }
}