:root {
    --white: #ffffff;
    --dark-white: #f2f2f2;
    --light-white: #f1f1f1;

    --black: #222020;
    --dark-black: #030303;
    --light-black: #1a1a1b;
    --light-slate-black: #222223;

    --red: #ee4136;
    --light-red: #ff8787;
    --dark-gray: #9c9696;
    --gray: #d6dbe1;
    --dim-gray: #f2f2f27a;
    --slate-gray: #737070;
    --dark-slate-gray: #f8f8f8;
    --light-slate-gray: #f4f4f4;

    --brown: #554d4d;
    --dark-browm: #484849;
    --light-brown: #343334;
    --light-slate-brown: #272729;

    --popup: #323131;

    font-family: "Montserrat", "Open Sans", "Source Sans Pro", "Segoe UI",
        sans-serif, Lato, -apple-system, system-ui, BlinkMacSystemFont, Roboto,
        Ubuntu !important;

    /* --navbar: #554d4d; 
      --navbarheader: #FFFFFF;
      --middle-panel: #F2F2F2;
      --middle-msg: #554d4d;
      --menu-text: #FFFFFF; */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: "Montserrat", "Open Sans", "Source Sans Pro", "Segoe UI",
        sans-serif, Lato, -apple-system, system-ui, BlinkMacSystemFont, Roboto,
        Ubuntu !important;
}

/* Ensure the label has a border by default (even if transparent) and a smooth transition */
.form-label {
    border: 1px solid transparent;
    transition: border-color 0.3s, color 0.3s;
}

/* Optionally add a transition to the input border as well */
.input-default {
    transition: border-color 0.3s;
}

/* When any element within .relative (like the input) is focused */
.relative:focus-within .input-default {
    border: 1.5px solid var(--black);
}

.relative:focus-within .form-label {
    color: var(--black);
}


.relative {
    position: relative;
}

.font-weight-bold {
    font-weight: 700;
}

.layout {
    min-height: 100vh;
    width: 100%;
    display: flex;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    position: absolute;
    width: 100%;
}

.logo-container svg {
    /* height: 5.5rem; */
    height: 100%;
    width: 21.68rem;
}

.highlight {
    font-weight: 700;
    font-size: 2.3rem;
    line-height: 2.4rem;
    color: #EE4136;
}

.btn-groups {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.6rem;
}

.signin-btn,
.signup-btn {
    height: 3.8rem;
    padding: 0.6rem 1.6rem;
    cursor: pointer;
    background-color: transparent;
    border: 0.1rem solid #9C9696;
    font-size: 1.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.6rem;
    color: var(--black);
}

.signin-btn:hover {
    border: 0.1rem solid var(--black);
    font-weight: 500;
}

.signup-btn:hover {
    border: 0.1rem solid var(--black);
    font-weight: 500;
}

.language-dropdown-container {
    position: relative;
}

.language-dropdown-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3.8rem;
    padding: 0.6rem 1.4rem;
    font-size: 1.7rem;
    cursor: pointer;
    background-color: transparent;
    border: 0.1rem solid #9C9696;
    border-radius: 0.6rem;
    gap: 1rem;
    color: var(--black);
}

.language-dropdown-btn p {
    margin: 0;
    padding: 0;
}

.language-dropdown-btn span {
    color: var(--black);
}

.language-dropdown-btn svg {
    transition: transform 0.3s ease;
}

.language-dropdown {
    position: absolute;
    top: 4rem;
    left: 0;
    width: 100%;
    border: 0.1rem solid #9C9696;
    border-radius: 0.6rem;
    overflow: hidden;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    list-style: none;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.language-dropdown-container:hover .language-dropdown {
    max-height: 50rem;
    opacity: 1;
}

.language-dropdown-container:hover .language-dropdown-btn svg {
    transform: rotate(180deg);
}

.language-dropdown button {
    padding: 0.5rem;
    cursor: pointer;
    background-color: var(--white);
    border: none;
    font-size: 1.5rem;
}

.language-dropdown button:hover {
    background-color: var(--gray);
}

.side-container {
    max-width: 52.9rem;
    width: 36vw;
    min-height: 100vh;
    /* border-right: 0.1rem solid #D9D9D9; */
    border-right: 0.3rem solid #D6DBE1;
    padding: 0 3rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 2.8rem;
}

.side-container-heading {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;

}

.side-container ul {
    list-style: none;
}

.side-container ul li {
    margin-bottom: 0.8rem;
}

.side-container p {
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 2.4rem;
    color: var(--black);
    margin-bottom: 0;
}

.features p {
    font-weight: 400;
}

.main-container {
    width: 100%;
    min-height: 100vh;
}

.features {
    display: flex;
    /* align-items: center; */
    gap: 1rem;
    font-weight: 400;
    font-size: 1.7rem;
    line-height: 2.4rem;

}

.top-features {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 400;
    min-width: 8rem;
    line-height: 2.4rem;
    width: 7.2rem;
    height: 7.2rem;
    gap: 0.8rem;
}

.feature-content img {
    width: 100%;
    height: 100%;
    max-width: 4.2rem;
    max-height: 4.2rem;
}

.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.form-container {
    max-width: 40rem;
    width: 100%;
}

.form-container h1 {
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 4.2rem;
    letter-spacing: -0.05rem;
    text-transform: capitalize;
    margin-bottom: 1.2rem;
}

.form-container p {
    font-weight: 500;
    font-size: 1.7rem;
    line-height: 2.6rem;
    color: var(--black);
    margin-bottom: 0;
}

.signup-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.6rem;
}

.form-input-container {
    /* position: relative; */
    width: 100%;
}

.form-label {
    color: #9C9696;
    position: absolute;
    top: -1.2rem;
    left: 1rem;
    padding: 0 0.3rem;
    font-size: 1.3rem;
    background-color: var(--white);
    margin-bottom: 0 !important;
    font-weight: 500;
}

.form-input-container input {
    border-radius: 1rem;
    /* border: 0.15rem solid var(--dark-gray); */
    height: 5.2rem;
    padding: 0 1.4rem;
    font-size: 1.7rem;
    line-height: 2.4rem;
    font-weight: 500;
    width: 100%;
}

.input-default {
    border: 0.15rem solid #9C9696;
}

.checkbox {
    width: 1.8rem;
    height: 1.8rem;
    overflow: hidden
}

.label-error {
    color: var(--red);
}

.stay-sign-in {
    margin-bottom: 0;
}

.input-error {
    border: 0.15rem solid var(--red);
}

.error-msg,
.error-msg-password,
.error-msg-name {
    color: var(--red);
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 2.4rem;
    width: 100%;
    margin-top: 1rem;
    display: block;
}

.show-password {
    position: absolute;
    top: 55%;
    right: 1.8rem;
    transform: translateY(-50%);
}

.show-password svg {
    width: 2.4rem;
    height: 2.4rem;
}

.password-parameters {
    /* display: none; */
    position: absolute;
    right: -29rem;
    bottom: 0;
    padding: 2rem;
    background-color: var(--white);
    box-shadow: 0 12px 68.6px 0px #39393921;
    border-radius: 0.6rem;
}

.form-input-container:focus-within .password-parameters {
    display: block;
}

.password-parameters::after {
    content: "";
    width: 2rem;
    height: 2rem;
    background-color: var(--white);
    position: absolute;
    top: 90%;
    left: -3%;
    transform: translateY(-50%) rotate(45deg);
}

.password-parameters p {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    line-height: 2.4rem;
    font-weight: 500;
}

.password-parameters ul {
    list-style: none;
}

.password-parameters ul li {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 2rem;
}

.isChecked {
    background-color: #E8E8E8;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    display: flex;
    justify-self: center;
    align-items: center;
}

.isChecked-false {
    background-color: #EE4136;
}

.isChecked-true {
    background: #7F9918;
}

.password-strength-meter {
    display: none;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.password-strength-meter.is-visible {
    display: flex;
}

.password-strength-meter__header {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 500;
    color: #4F4F4F;
}

.password-strength-meter__status {
    font-weight: 600;
}

.password-strength-meter__bars {
    display: flex;
    gap: 0.6rem;
}

.password-strength-bar {
    flex: 1;
    height: 0.5rem;
    border-radius: 0.5rem;
    background-color: #E3E3E3;
    transition: background-color 0.2s ease;
}

.password-strength-bar.active {
    background-color: #EE4136;
}

.password-strength-meter.level-2 .password-strength-bar.active {
    background-color: #F4A640;
}

.password-strength-meter.level-3 .password-strength-bar.active {
    background-color: #E2C12F;
}

.password-strength-meter.level-4 .password-strength-bar.active {
    background-color: #7F9918;
}

.isChecked-true svg {
    width: 100%;
}

.isChecked-false,
.isChecked-true {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    padding: 0.3rem;
}

.isChecked-container {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1rem;
}

.submit-btn {
    background-color: var(--red);
    height: 4.8rem;
    width: 100%;
    border-radius: 1rem;
    border: none;
    font-weight: 600;
    font-size: 1.7rem;
    line-height: 2.8rem;
    text-transform: capitalize;
    color: var(--white);
    cursor: pointer;
}

.or-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.or-container p {
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 2.4rem;
    color: var(--black);
    margin: 0;
}

.signup-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}


.divider {
    width: 100%;
    height: 0.1rem;
    background-color: #D9D9D9;
}

.signup-buttons {
    height: 4.8rem;
    width: 100%;
    border-radius: 1rem;
    gap: 0.8rem;
    text-transform: capitalize;
    color: var(--black);
    cursor: pointer;
    border: 0.1rem solid #9c9696;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 1.7rem;
    line-height: 2.6rem;
}

.tnc {
    margin-top: 2rem;
    font-weight: 400;
    font-size: 1.7rem;
    line-height: 2.6rem;
    text-align: center;
    color: var(--dark-gray);
}

.tnc span {
    color: #4285F4;
    text-decoration: underline;
}

.tnc a {
    color: #4285F4;
    text-decoration: underline;
    font-weight: 500;
}

.tnc p {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2.6rem;
    max-width: 37rem;
}

/* @media (max-width: 1020px) {
    .side-container {
        display: none;
    }

    .main-container {
        width: 100%;
    }
} */

@media (max-width: 767.98px) {
    .side-container {
        display: none;
    }

    .main-container {
        width: 100%;
    }
}

.checkbox-container {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checkbox-container label {
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 2.4rem;
    color: var(--black);
    margin-bottom: 0;
    cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
    cursor: pointer;
    accent-color: #ee4136;
}

.login-resend-container {
    text-align: center;
    margin-top: 2rem;
}

.forgot-login-link {
    font-weight: 400;
    font-size: 1.7rem;
    line-height: 2.6rem;
    color: var(--black);
    text-decoration: none;
}

.forgot-resend-link {
    font-weight: 500;
    font-size: 1.7rem;
    line-height: 2.6rem;
    color: #367AFF;
    text-decoration: none;
}

.thankyou-template {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.thankyou-template-container {
    /* max-width: 78.1rem;
    min-height: 71.4rem; */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* border: 1px solid #D9D9D980; */
    padding: 2rem;
}

.thankyou-template-content {
    /* max-width: 47rem; */
    text-align: center;
    margin-top: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* gap: 2rem; */
}

.thankyou-template-content h2 {
    /* font-weight: 600;
    font-size: 2rem;
    line-height: 4.1rem;
    letter-spacing: 0.1rem;
    text-align: center; */
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 4.2rem;
    letter-spacing: -0.5px;
    margin-bottom: 0 !important;
}

.thankyou-template-content p {
    margin-bottom: 0;
}

.email-div {
    margin-top: 2.4rem;
}

.thankyou-template-content_label {
    /* font-weight: 500;
    font-size: 1.7rem;
    line-height: 2.8rem;
    letter-spacing: 0.06rem;
    color: #737070;
    margin-top: 1.6rem; */
    font-weight: 500;
    font-size: 1.7rem;
    line-height: 2.8rem;
    text-align: center;
    color: #222020;
}

.email-text {
    font-weight: 700;
    font-size: 1.7rem;
    line-height: 2.8rem;
    text-align: center;
}

.thankyou-template-content_user-email {
    font-weight: 600;
    font-size: 1.7rem;
    line-height: 2.8rem;
    letter-spacing: 0.06rem;
}

.thankyou-template-content_heading {
    /* font-weight: 600;
    font-size: 1.7rem;
    line-height: 2.8rem;
    letter-spacing: 0.06rem;
    text-transform: capitalize; */
    font-weight: 500;
    font-size: 1.7rem;
    line-height: 2.8rem;
    text-align: center;
    color: #222020;
}

a {
    color: #007bff;
    text-decoration: underline;
    background-color: transparent;
    text-underline-offset: 4px;
}

.thankyou-template-content_button-primary {
    height: 4.5rem;
    background-color: var(--red);
    color: var(--white);
    padding: 0 1.8rem;
    border-radius: 1rem;
    border: none;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    cursor: pointer;
    margin-top: 1.8rem;
}

.resend-email-container {
    margin-top: 2.6rem;
}

/* .resend-signin-container {
    margin-top: 3rem;
} */

.thankyou-template-content_divider {
    margin-top: 2.8rem;
    margin-bottom: 2rem;
}

.thankyou-template-secondary-primary {
    height: 4.5rem;
    background-color: var(--white);
    color: var(--red);
    padding: 0 1.8rem;
    border-radius: 1rem;
    border: 1px solid var(--red);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    cursor: pointer;
    margin-top: 1.6rem;
}

.submitButtonGlobal {
    padding: 0.8rem 1.8rem;
    border-radius: 0.3rem;
    border: solid 0.1rem var(--red);
    font-size: 1.3rem;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.2rem;
    letter-spacing: 0.1rem;
    text-align: center;
    color: var(--white);
    /* text-transform: uppercase; */
    background-color: var(--red);
    cursor: pointer;
    /* height: 3.7rem; */
}

.email-signUp-forms {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

/* 
@media (max-width: 1510px) {
    .side-container{
        display: none;
    }
    .main-container{
        width: 100%;
    };
} */
.submitButtonGlobal.inActiveBtn {
    background-color: #cccccc;
    border: solid;
    cursor: not-allowed;
    pointer-events: none;
    transition: background-color 0.3s ease;
}


.authentication-resend-container {
    text-align: left;
    width: 100%;
    font-size: 1.5rem;
    color: #222020;
}

.authentication-resend-link {
    font-size: 1.5rem;
    color: #222020;
}

.authentication-resend-link:hover {
    font-size: 1.5rem;
    color: #222020;
}

/* multi factor authentication */

.mfa-popup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    background-color: #00000080;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.mfa-popup {
    position: absolute;
    width: 51.2rem;
    min-height: 33.8rem;
    background: #fff;
    padding: 2.4rem;
    border-radius: 0.4rem;
}

.mfa-header {
    position: relative;
}

.mfa-title {
    font-weight: 600;
    font-size: 1.7rem;
    line-height: 2.8rem;
    color: #222020;
    margin-bottom: 0.6rem;
}

.mfa-title-desc {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 2rem;
    color: #222020;
    margin: 0rem;
}

.mfa-close-btn {
    position: absolute;
    top: 2rem;
    right: 1.6rem;
    width: 2.4rem;
    height: 2.4rem;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 999;
}

.mfa-close-btn svg {
    width: 100%;
    height: 100%;
}

.mfa-verification-title {
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 2rem;
    color: #222020;
    margin-top: 3rem;
    margin-bottom: 0rem;
}

.mfa-otp-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.6rem;
}

.mfa-otp-group {
    display: flex;
    gap: 0.8rem;
}

.mfa-otp-group input {
    width: 6.4rem;
    height: 6.4rem;
    border: 1px solid #D6DBE1;
    border-radius: 0.6rem;
    padding: 0.2rem 0.8rem;
    font-size: 3.5rem;
    line-height: 6rem;
    text-align: center;
    color: #222020;
    font-weight: 500;
}

.mfa-otp-digit.has-value {
    border-color: #222020;
}

.mfa-error-input {
    color: #EE4136 !important;
}

.mfa-otp-group input::placeholder {
    color: #D6DBE1;
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 6rem;
    text-align: center;
}

.mfa-otp-separator {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 7.2rem;
    color: #D6DBE1;
    width: 2.8rem;
    text-align: center;
}

.mfa-otp-separator.active {
    color: #222020;
}

.mfa-resend-password {
    font-size: 1.3rem;
    color: #222020;
    line-height: 2rem;
    margin-top: 1rem;
    margin-bottom: 1.4rem;
}

.mfa-resend-timer {
    /* font-size: 1.2rem;
    color: #9C9696;
    text-decoration: underline;
    text-decoration-color: currentColor;
    text-underline-offset: 0.2rem; */
}

.mfa-timer {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.mfa-timer svg {
    width: 2rem;
    height: 2rem;
}

.mfa-timer-countdown {
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 2rem;
    color: #222020;
}

.mfa-timer-text {
    padding: 0;
    margin: 0;
    font-size: 1.3rem;
    line-height: 2rem;
}

.mfa-resend-btn {
    color: #222020;
    text-decoration: underline;
    text-underline-offset: 0.4rem;
}

.mfa-resend-btn:hover {
    color: #222020;
}

.mfa-action-btn {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 3rem;
}

.mfa-action-btn button {
    width: 100%;
    padding: 1rem 8.65rem;
    border-radius: 0.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
}

.mfa-cancel-btn {
    border: 1px solid #9C9696;
    color: #9C9696;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 2.4rem;
    cursor: pointer;
    background: transparent;
}

.mfa-verify-btn {
    background-color: #EE4136;
    border: none;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 2.4rem;
    cursor: pointer;
}

.mfa-error-msg {
    color: #EE4136;
    font-size: 1.3rem;
    line-height: 2.6rem;
    padding: 0;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Hide number input spinners for OTP fields */
.mfa-otp-group input::-webkit-outer-spin-button,
.mfa-otp-group input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.mfa-otp-group input[type="number"] {
    -moz-appearance: textfield;
}

/* MFA popup minimal styles */
.mfa-otp-digit {
    text-align: center;
    font-size: 2rem;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    height: 52px;
    width: 52px;
    outline: none;
    transition: border-color 0.2s ease;
}

.mfa-otp-digit:focus {
    border-color: #222020;
}

.mfa-otp-digit.error {
    border-color: #ee4136;
    color: #ee4136;
}

.mfa-timer .mfa-expiry-text {
    margin: 0;
}


.authentication-resend-container {
    text-align: left;
    width: 100%;
    font-size: 1.5rem;
    color: #222020;
}

.authentication-resend-link {
    font-size: 1.5rem;
    color: #222020;
}

.authentication-resend-link:hover {
    font-size: 1.5rem;
    color: #222020;
}