:root {
    --color-full-black: black;
    --color-primary-black: #180c45;
    --color-white: #ffffff;
    --color-primary: #1239FF;
    --color-primary-hover: #143bff;
    --color-success: #22C55E;
    --color-error: #EF4444;
    --color-primary-10: #EDEEFF;
    --color-grey-200: #828282;
    --color-bg-grey: #f0f3f9;
    --color-light-grey: #f9f9f9;
    --color-grey-100: #bdbdbd;
    --border-color-default: #D9D9D9;
    --border-radius-default: 0.75rem;
}

* {
  margin: 0;
  padding: 0;
}

*,
::after,
::before {
  box-sizing: border-box;
}

html,
body {
  font-family: "Inter", sans-serif;
  background: var(--color-bg-grey);
  color: var(--color-primary-black);
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-y: hidden;
}

a {
  color: var(--color-primary);
}

/* scrollbar styles */
::-webkit-scrollbar {
  height: 5px;
  width: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
  border-radius: var(--border-radius-default);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-primary-hover);
}

::-webkit-scrollbar-track {
  background: var(--color-primary-10);
}

::-webkit-scrollbar:hover {
  transition: all 0.1s ease-in-out;
}

/*margin-classes*/
.margin-top-0 {
  margin-top: 0px !important;
}

.margin-top-5 {
  margin-top: 5px !important;
}

.margin-top-10 {
  margin-top: 10px;
}

.margin-top-15 {
  margin-top: 15px;
}

.margin-top-20 {
  margin-top: 20px;
}

.margin-top-25 {
  margin-top: 25px !important;
}

.margin-top-30 {
  margin-top: 30px;
}

.margin-top-35 {
  margin-top: 35px;
}

.margin-top-40 {
  margin-top: 40px;
}

.margin-top-45 {
  margin-top: 45px;
}

.margin-top-50 {
  margin-top: 50px;
}

.margin-top-55 {
  margin-top: 55px;
}

.margin-top-60 {
  margin-top: 60px;
}

.margin-bottom-5 {
  margin-bottom: 5px !important;
}

.margin-bottom-10 {
  margin-bottom: 10px !important;
}

.margin-bottom-15 {
  margin-bottom: 15px !important;
}

.margin-bottom-20 {
  margin-bottom: 20px !important;
}

.margin-bottom-25 {
  margin-bottom: 25px !important;
}

.margin-bottom-30 {
  margin-bottom: 30px !important;
}

.margin-bottom-35 {
  margin-bottom: 35px !important;
}

.margin-bottom-40 {
  margin-bottom: 40px !important;
}

.margin-bottom-45 {
  margin-bottom: 45px !important;
}

.margin-bottom-50 {
  margin-bottom: 50px !important;
}

.margin-bottom-55 {
  margin-bottom: 55px;
}

.margin-bottom-60 {
  margin-bottom: 60px;
}

.margin-right-10 {
  margin-right: 10px;
}

.margin-right-15 {
  margin-right: 15px;
}

.margin-right-20 {
  margin-right: 20px;
}

.margin-right-25 {
  margin-right: 25px;
}

.margin-right-30 {
  margin-right: 30px;
}

.margin-right-35 {
  margin-right: 35px;
}

.margin-right-40 {
  margin-right: 40px;
}

.margin-right-45 {
  margin-right: 45px;
}

.margin-right-50 {
  margin-right: 50px;
}

.margin-right-55 {
  margin-right: 55px;
}

.margin-right-60 {
  margin-right: 60px;
}

.margin-left-10 {
  margin-left: 10px;
}

.margin-left-15 {
  margin-left: 15px;
}

.margin-left-20 {
  margin-left: 20px;
}

.margin-left-25 {
  margin-left: 25px;
}

.margin-left-30 {
  margin-left: 30px;
}

.margin-left-35 {
  margin-left: 35px;
}

.margin-left-40 {
  margin-left: 40px;
}

.margin-left-45 {
  margin-left: 45px;
}

.margin-left-50 {
  margin-left: 50px;
}

.margin-left-55 {
  margin-left: 55px;
}

.margin-left-60 {
  margin-left: 60px;
}

/* text styles */
.font-weight-300 {
    font-weight: 300 !important;
}
.font-weight-400 {
  font-weight: 400 !important;
}

.font-weight-500 {
  font-weight: 500 !important;
}

.font-weight-600 {
  font-weight: 600 !important;
}

.font-weight-700 {
  font-weight: 700 !important;
}

.text-color-primary {
  color: var(--color-primary) !important;
}

.text-color-black {
  color: var(--color-primary-black) !important;
}

.text-color-full-black {
  color: var(--color-full-black) !important;
}
.text-color-grey--200 {
  color: var(--color-grey-200) !important;
}

.font-style-check-box-text {
  font-size: 14.5px;
  font-weight: normal;
  line-height: 22px;
  text-decoration: none;
  text-transform: none;
}

.font-style-placeholder-text {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  text-decoration: none;
  text-transform: none;
}

.font-style-header-2 {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.25;
  text-decoration: none;
  text-transform: none;
}

.text-deocoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.hover-underline {
  transition: all 0.2s;
}

.hover-underline:hover {
  text-decoration: underline !important;
}

/* text styles */

/* flex styles */
.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.justify-center {
  justify-content: center;
}

.justify-space-between {
  justify-content: space-between;
}

.align-items-center {
  align-items: center;
}

/* position classes */
.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.login-mountain-image {
  bottom: -35vh;
}

@media only screen and (min-height: 810px) {
  .login-mountain-image {
    bottom: -31vh;
  }
}

@media only screen and (max-height: 670px) {
  .login-mountain-image {
    bottom: -40vh;
  }
}

/* container classes */
.fill-container {
  width: 100% !important;
}

.container-login {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    width: 100%;
    flex: 1;
    overflow: auto;
}

/* login card styles */
.login-card {
    padding: 0 25px;
    max-width: 455px !important;
    width: 100%;
    margin: auto;
}

.login-card .textbox::placeholder {
  color: var(--color-primary-black);
}

/* login switch styles */
.login-switch-wrapper {
    border-radius: var(--border-radius-default);
    background: var(--color-light-grey);
}

.switch-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 142px;
    height: 44px;
    border-radius: var(--border-radius-default);
    background-color: var(--color-light-grey);
    background-image: none !important;
    color: var(--color-grey-200);
    font-size: 14px;
    font-weight: 500;
    border: none;
    outline: none;
    backdrop-filter: blur(15.399999618530273px);
    transition: all 0.2s;
    cursor: pointer;
}

.switch-button.selected {
  background-color: var(--color-primary-10);
  color: var(--color-primary);
}

/* button styles */
.button {
    box-sizing: border-box;
    border-width: 1px;
    border-style: solid;
    color: inherit;
    background: none;
    font-family: inherit;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.88rem;
    vertical-align: middle;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    outline: none;
    position: relative;
    transition: color 0.2s ease-in-out;
    border-radius: 0.625rem;
    font-family: "Inter", sans-serif;
    padding-top: 0.53rem;
    padding-bottom: 0.53rem;
    padding-right: 1.28rem;
    padding-left: 1.28rem;
    font-size: 0.85rem;
    line-height: 1.62;
}

  .button.solid {
    font-weight: 700;
  }

  .button.solid.qbo {
    background-color: #2ca01c;
    color: #fff;
    border-color: #2ca01c;
  }

  .button.solid.qbo:hover {
    background-color: #2ca01c;
    border-color: #2ca01c;
  }

  .button.outline {
    font-weight: 400;
    border: 1px solid #bdbdbd;
    color: #0c0835;
    border-radius: 0.2rem;
  }

  button.external {
      justify-content: start;
      font-weight: 600 !important;
      padding: 0.52rem !important;
      font-size: 13px;
  }

  .external-icon-box {
        border-radius: 0.157rem;
        background: #FFFDF9;
        width: 22px;
        height: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
  }

  .external-icon-box img {
        max-width: 17px;
        max-height: 17px;
        object-fit: contain;
  }

  .button.outline.Intuit {
        font-weight: 600;
        border: 1px solid #3376bf;
        color: #fff;
        background: #0077C5;
        border: 1px solid #0077C5;
   }

  .button.outline.Adp {
     font-weight: 600;
     border: 1px solid #ed1c2e;
     color: #ed1c2e;
   }

   .button.outline.Google {
       background-color: #4285F4;
       border-color: #4285F4;
       color: #fff;
   }

   .button.outline.Microsoft {
        background-color: #201515;
        border-color: #201515;
        color: #fff;
   }

  .button.outline.Microsoft .external-icon-box img{
      max-width: 15px;
      max-height: 15px;
  }
  
  .button.solid.primary {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
  }

  .button.solid.primary:hover {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
  }
/* display styles  */
.hide {
    display: none;
}

/* input styles */

input {
  margin: 0;
  padding: 0;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  border-width: 1px;
  border-style: solid;
  outline: 0;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4285714286;
  font-weight: normal;
  text-align: start;
  box-shadow: none;
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: stretch;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
}

input.textbox {
    font-size: 14px;
    line-height: 1.4285714286;
    padding-bottom: 0.85rem;
    padding-left: 1.12rem;
    padding-right: 1.12rem;
    padding-top: 0.85rem;
    border: 0.5px solid var(--border-color-default);
    border-radius: 0.625rem;
    background: transparent;
}

/* input error styles */

input.textbox.invalid {
  border-color: var(--color-error);
}

input.textbox::placeholder {
    color: var(--color-grey-200) !important;
    font-weight: 400;
}

input.textbox.valid {
  border-color: var(--color-success);
}

input.checkbox {
  width: 1.125rem;
  height: 1.125rem;
}

/* layout styles */
.layout-column-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}

/* label styles */
label {
  display: block;
}

/* custom styles */

.scrollable-form {
  max-height: 46vh;
  overflow-y: auto;
  padding: 0 5px;
}

@media only screen and (min-height: 1080px) {
  .scrollable-form {
    height: auto;
    overflow-y: auto;
  }
}

.error {
  color: var(--color-error);
  font-size: 12px;
}

.login-wrapper {
    height: 100vh;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.external-login-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
/* forgot password page styles */
.reset-password-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.reset-password-header p {
  text-align: center;
  max-width: 321px;
  font-size: 14px !important;
  color: var(--color-grey-200);
}

.login-card.reset-pw-card {
  position: relative;
  justify-content: center;
}

.reset-pw-close-btn {
  position: absolute;
  top: 21px;
  right: 35px;
}

/* custom checkbox styles */

.round-checkbox {
    position: relative;
    flex-shrink: 0;
    height: 1.125rem;
}

.round-checkbox label {
  width: 1.125rem;
  height: 1.125rem;
  background-color: transparent;
  border: 2px solid #bdbdbd;
  border-radius: 50%;
  cursor: pointer;
  left: 0;
  position: absolute;
  top: 0;
}

.round-checkbox input[type="checkbox"] {
  opacity: 0;
  width: 1.125rem;
  height: 1.125rem;
}

.round-checkbox input[type="checkbox"]:checked + label {
  border-color: var(--color-primary);
  border-width: 6.5px;
}

/* error password popup styles */

.error-password-popup {
  position: fixed;
  border-radius: 20px;
  filter: drop-shadow(0px 8.904px 31.165px rgba(0, 0, 0, 0.1));
  padding: 1.5rem 1rem 0.9rem 1.5rem !important;
  font-size: 0.7rem;
  font-weight: 400;
  color: #828282;
  background: #fff;
  z-index: 20;
  top: 0;
  left: -362px;
  width: 350px;
}

.text-align-center {
    text-align: center;
}

.text-danger {
    font-size: 0.875rem;
    color: var(--color-error);
}

/* Left Panel styles */

.left-panel-logo {
    margin-bottom: 3rem;
}

.left-panel-content {
    max-width: 34.5rem;
    margin-top: 13vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left:auto;
    margin-right: auto;
}

.heading-display {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.045rem;
}

.p-small {
    font-size: 0.75rem;
    line-height: 1.25rem;
}

.p-default {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.max-25 {
    max-width: 25rem;
}

.max-28 {
    max-width: 28.75rem;
}



.free-trial-badge {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.625rem;
    background: var(--color-primary);
    color: #fff;
    padding: 0.88rem 1.25rem;
}

.left-panel-bg {
    position: absolute;
    bottom: 0;
    left: -3%;
    width: 107%;
}

.left-panel-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3.5rem;
    background: var(--color-light-grey);
    overflow: auto;
}

.right-panel-wrapper {
    display: grid;
    justify-content: center;
    padding: 3.5rem;
    overflow: auto;
}

.form-input-wrapper {
    display: flex;
    flex-direction: column;
    justify-content:stretch;
    gap: 1rem;
    margin-bottom: 0.875rem;
}

.or-text {
    margin-top: 0.875rem;
    margin-bottom: 0.875rem;
    color: var(--color-grey-200);
    text-align: center;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.4;
}

.input-row-col-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:0.75rem;
}

.button-style-image {
    background-image: url(/images/sign-in-with-intuit-defalut.svg);
    background-repeat: no-repeat;
    min-width: 193px;
    height: 41px;
    border: none;
    outline: none !important;
    background-color: transparent !important;
    cursor:pointer;
    margin: 0 auto;
}

    .button-style-image:hover {
        background-image: url(/images/sign-in-with-intuit-hover.svg);
    }


/* ==== card wrapper =========================================== */
.twofa-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 960px;
    margin-inline: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 12px 24px rgb(0 0 0 / .08);
    overflow: hidden;
}

/* ==== left pane ============================================== */
.info-pane {
    background: #f4f4ff;
    border-right: 1px dashed #c6c6ff;
    padding-right: 2rem;
}

.key-pill {
    display: table;
    background: #222;
    color: #fff;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: .8rem;
    letter-spacing: .4px;
}

.qr-block {
    background: #fafcff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgb(0 0 0 / 10%);
}

.tiny {
    font-size: .76rem;
}

/* ==== right pane ============================================= */
.form-pane {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 3rem;
}

    .form-pane img {
        max-width: 72px;
        margin-bottom: 1rem;
    }

    .form-pane button {
        background-color: #1976d2;
        color: white;
        font-weight: bold;
        padding: 12px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
    }

.recovery-code-box {
    background: var(--color-bg-grey);
    color: black;
    padding: 0.5rem;
    border-radius: 8px;
    display: inline-block;
    margin:0.5rem;
    font-weight:bold;
}

.copy-btn {
    margin-top: 5px;
    padding: 6px 12px;
    font-size: 0.875rem;
    cursor: pointer;
}
#copyFeedback {
    font-size: 1rem;
    font-weight: bold;
}

.bg-auty {
    --bs-bg-opacity: 1;
    background-color: rgb(223 239 255) !important;
}

.why-text {
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.66;
    color: var(--color-primary);
    margin-top: 1.5rem;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.why-list-item {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.66;
    color: #6B7280;
}

.why-list-item-header {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.42;
    color: var(--color-primary-black);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.book-strategy-button {
    grid-column-gap: .25rem;
    grid-row-gap: .25rem;
    border: none;
    border-radius: 0.29444rem;
    background-color: #0C0835;
    color: #fff;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 1.25rem 0.5rem 0;
    font-size: .65rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    flex-shrink: 0;
}

.strategy-book-image {
    margin-left: 4px;
    margin-top: -11px;
    margin-bottom: -11px;
    transform: rotateZ(-11deg);
}

.strategy-book-text {
    font-size: 0.73rem;
    line-height: 1.4;
}

/* ==== Growth Advisor Button ============================================= */

.growth-adivisor-button {
    grid-column-gap: .59rem;
    grid-row-gap: .59rem;
    background-color: var(--color-primary);
    color: #ffffff;
    border: 5px solid #17171769;
    border-radius: 4.9165rem;
    padding: .39rem .8rem .39rem .39rem;
    font-size: .81663rem;
    font-weight: 600;
    line-height: 1.46;
    display: inline-flex;
    margin-bottom: 1.75rem;
}

.growth-adivisor-button.no-border {
    border-style: none;
    padding-right: 1rem;
    text-decoration: none
}

.growth-adivisor-button.no-border.v-small {
    font-size: .61125rem;
    line-height: 1.4
}

.meeting-value-number {
    color: #22c55e;
    font-size: 1.14719rem;
    font-style: italic;
    font-weight: 800
}

.meeting-value-number.v-small {
    font-size: .85869rem
}

.meeting-value {
    color: #22c55e;
    font-style: italic
}

.meeting-value.v-small {
    font-size: .62231rem
}

.icon-embed-zoom {
    width: 1.98719rem;
    height: 1.98719rem;
}

.right-panel-logo {
    display: none;
}

.nav-banner-content {
    grid-column-gap: 1.14rem;
    grid-row-gap: 1.14rem;
    justify-content: center;
    align-items: center;
    padding-top: .5rem;
    padding-bottom: .5rem;
    display: flex;
    background-image: linear-gradient(65deg, #8711c121, #2472fc24);
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
    transition: height .2s;
    display: flex;
    position: relative;
    overflow: hidden;
    flex-shrink:0;
}

.new-tag {
    color: #fff;
    background-image: linear-gradient(45deg, #8711c1, #2472fc);
    border-radius: .25rem;
    padding: .25rem .5rem;
    font-size: .75rem;
    font-weight: 700;
}

.banner-wrap {
    justify-content: flex-start;
    align-items: center;
    display: flex;
    text-decoration: none;
}

.text-banner {
    color: #4b5563;
    font-size: .75rem;
    font-weight: 500;
    line-height: 1;
}

.ai-growth-image {
    margin-left: .25rem;
    margin-right: .25rem;
}

.button.is-icon.is-ai-growth {
    grid-column-gap: .35rem;
    grid-row-gap: .35rem;
    background-color: #fff;
    padding: .25rem .56rem;
    font-size: .75rem;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.20938rem;
}

.close-banner {
    cursor: pointer;
    justify-content: center;
    align-items: center;
    width: 11px;
    height: 11px;
    transition: all .2s;
    display: flex;
    position: absolute;
    inset: .65rem .5rem auto auto;
}

.ai-growth-text {
    background: linear-gradient(45deg, #8711C1 0.71%, #2472FC 99.64%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.apply-line-box {
    letter-spacing: -.02713rem;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    font-size: 1.35rem;
    font-weight: 700;
    display: inline-flex;
    position: relative;
    overflow: visible;
}

.apply-line-box-inner {
    justify-content: flex-start;
    align-items: center;
    display: flex;
    gap: 0.13rem
}

.apply-line.small {
    width: 100%;
    max-width: 11rem;
}

.apply-line-start.small {
    font-size: .73594rem;
}

.apply-line-end.small {
    font-size: .73594rem;
}

.icon-embed-xsmall.apply-icon-small {
    width: 1rem;
    height: 1rem;
}

.icon-embed-xsmall {
    flex-direction: column;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
}



/* ==== responsive ============================================= */
@media(max-width: 768px) {
    .twofa-card {
        grid-template-columns: 1fr;
    }

    .info-pane {
        border-right: none;
        border-bottom: 1px dashed #c6c6ff;
        margin-bottom: 2rem;
    }

    .form-pane {
        margin-top: 1rem;
    }
    .two-factor-image {
        display: none;
    }
}

@media(max-height: 890px) {
    .left-panel-content {
        margin-top: 0;
    }
}

@media screen and (max-width: 910px) {
    .switch-button {
        width: 125px;
        height: 40px;
        font-size: 12px;
    }

    .right-panel-wrapper {
        padding: 1.5rem;
    }

    .left-panel-wrapper {
        padding: 2rem;
    }
}


@media screen and (max-width: 740px) {

    .login-wrapper {
        height: 100vh;
        overflow: auto;
        background: #fff;
        display: block;
    }

    .right-panel-logo {
        display: block;
        margin-bottom: 2rem;
        margin-left: auto;
        margin-right: auto;
    }


    .container-login {
        display: flex;
        flex-direction: column;
        flex-flow: column-reverse;
    }

    .right-panel-wrapper {
        overflow: visible;
        min-height: 100vh;
    }

    .left-panel-content {
        margin-top: 2vh;
    }

    .right-panel-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .left-panel-logo {
        display: none
    }

    .login-card {
        margin: 0;
    }

    .right-panel-app-icon {
        display: none;
    }

    .nav-banner-content {
        display: none !important;
    }
}




@media screen and (max-width: 540px) {

    .external-login-buttons {
        max-width: 340px;
        margin: 0 auto;
    }

    .login-card {
        padding: 0 15px;
    }

    .form-input-wrapper {
        gap: 0.7rem;
        margin-bottom: 0.5rem;
    }

    input.textbox {
        font-size: 12px;
        padding-bottom: 0.65rem;
        padding-top: 0.65rem;
    }

    .font-style-check-box-text {
        font-size: 12px;
        line-height: 1.5;
    }

    .font-style-placeholder-text {
        font-size: 13px;
        line-height: 1.5;
    }

    .margin-bottom-30 {
        margin-bottom: 20px !important;
    }

    .margin-top-20 {
        margin-top: 12px;
    }

    .button {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        font-size: 0.75rem;
    }

    .heading-display {
        font-size: 1.5rem;
    }

    .p-default {
        font-size: 0.75rem;
    }

    .free-trial-badge {
        padding: 0.55rem 0.75rem;
        font-size: 12px;
    }

    .margin-bottom-25 {
        margin-bottom: 20px !important;
    }


    .why-list-item-header {
        font-size: 0.75rem;
    }

    .why-list-item {
        font-size: 0.7rem;
    }



}

@media screen and (max-height: 700px) {
    .switch-button {
        width: 108px;
        height: 35px;
        font-size: 12px;
        border-radius: 0.375rem;
    }
    .or-text {
        margin-top: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .right-panel-logo {
        margin-bottom: 1.25rem;
        height: 30px;
    }

    .login-switch-wrapper.margin-bottom-30 {
        margin-bottom: 15px !important;
    }

    .form-input-wrapper {
        gap: 0.55rem;
        margin-bottom: 0;
    }

    li {
        font-size: 12px;
    }

}

@media(max-width: 1165px) {
    .text-banner.line-introduce {
        display: none;
    }

    .ai-growth-image {
        display: none;
    }
}

@media(max-width: 935px) {
    .apply-line-box {
        display: none
    }
}

#registerSubmit:disabled {
    background-color: lightblue !important;
    color: white !important;
    cursor: not-allowed;
    opacity: 0.8;
}

/* Enabled style (keeps your existing look) */
#registerSubmit {
    transition: background-color 0.3s;
}

    #registerSubmit:not(:disabled):hover {
        opacity: 0.9;
        cursor: pointer;
    }


