#loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loader {
    /* width: 50px;
    height: 50px; */
    margin: 0px;
}


.loader-body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    position: fixed !important;
    top: 25%;
    left: 47%;
    /* background-color: white; */
}

/*! Loader css */
.la-ball-spin-fade,
.la-ball-spin-fade > div {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.la-ball-spin-fade {
    display: block;
    font-size: 0;
    color: #fff;
}
.la-ball-spin-fade.la-dark {
    color: #333;
}
.la-ball-spin-fade > div {
    display: inline-block;
    float: none;
    background-color: currentColor;
    border: 0 solid currentColor;
}
.la-ball-spin-fade {
    width: 32px;
    height: 32px;
}
.la-ball-spin-fade > div {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    margin-left: -4px;
    border-radius: 100%;
    -webkit-animation: ball-spin-fade 1s infinite linear;
    -moz-animation: ball-spin-fade 1s infinite linear;
    -o-animation: ball-spin-fade 1s infinite linear;
    animation: ball-spin-fade 1s infinite linear;
}
.la-ball-spin-fade > div:nth-child(1) {
    top: 5%;
    left: 50%;
    -webkit-animation-delay: -1.125s;
    -moz-animation-delay: -1.125s;
    -o-animation-delay: -1.125s;
    animation-delay: -1.125s;
}
.la-ball-spin-fade > div:nth-child(2) {
    top: 18.1801948466%;
    left: 81.8198051534%;
    -webkit-animation-delay: -1.25s;
    -moz-animation-delay: -1.25s;
    -o-animation-delay: -1.25s;
    animation-delay: -1.25s;
}
.la-ball-spin-fade > div:nth-child(3) {
    top: 50%;
    left: 95%;
    -webkit-animation-delay: -1.375s;
    -moz-animation-delay: -1.375s;
    -o-animation-delay: -1.375s;
    animation-delay: -1.375s;
}
.la-ball-spin-fade > div:nth-child(4) {
    top: 81.8198051534%;
    left: 81.8198051534%;
    -webkit-animation-delay: -1.5s;
    -moz-animation-delay: -1.5s;
    -o-animation-delay: -1.5s;
    animation-delay: -1.5s;
}
.la-ball-spin-fade > div:nth-child(5) {
    top: 94.9999999966%;
    left: 50.0000000005%;
    -webkit-animation-delay: -1.625s;
    -moz-animation-delay: -1.625s;
    -o-animation-delay: -1.625s;
    animation-delay: -1.625s;
}
.la-ball-spin-fade > div:nth-child(6) {
    top: 81.8198046966%;
    left: 18.1801949248%;
    -webkit-animation-delay: -1.75s;
    -moz-animation-delay: -1.75s;
    -o-animation-delay: -1.75s;
    animation-delay: -1.75s;
}
.la-ball-spin-fade > div:nth-child(7) {
    top: 49.9999750815%;
    left: 5.0000051215%;
    -webkit-animation-delay: -1.875s;
    -moz-animation-delay: -1.875s;
    -o-animation-delay: -1.875s;
    animation-delay: -1.875s;
}
.la-ball-spin-fade > div:nth-child(8) {
    top: 18.179464974%;
    left: 18.1803700518%;
    -webkit-animation-delay: -2s;
    -moz-animation-delay: -2s;
    -o-animation-delay: -2s;
    animation-delay: -2s;
}
.la-ball-spin-fade.la-sm {
    width: 16px;
    height: 16px;
}
.la-ball-spin-fade.la-sm > div {
    width: 4px;
    height: 4px;
    margin-top: -2px;
    margin-left: -2px;
}
.la-ball-spin-fade.la-2x {
    width: 64px;
    height: 64px;
}
.la-ball-spin-fade.la-2x > div {
    width: 16px;
    height: 16px;
    margin-top: -8px;
    margin-left: -8px;
}
.la-ball-spin-fade.la-3x {
    width: 96px;
    height: 96px;
}
.la-ball-spin-fade.la-3x > div {
    width: 24px;
    height: 24px;
    margin-top: -12px;
    margin-left: -12px;
}
/*
* Animation
*/
@-webkit-keyframes ball-spin-fade {
    0%,
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        opacity: .25;
        -webkit-transform: scale(.5);
        transform: scale(.5);
    }
}
@-moz-keyframes ball-spin-fade {
    0%,
    100% {
        opacity: 1;
        -moz-transform: scale(1);
        transform: scale(1);
    }
    50% {
        opacity: .25;
        -moz-transform: scale(.5);
        transform: scale(.5);
    }
}
@-o-keyframes ball-spin-fade {
    0%,
    100% {
        opacity: 1;
        -o-transform: scale(1);
        transform: scale(1);
    }
    50% {
        opacity: .25;
        -o-transform: scale(.5);
        transform: scale(.5);
    }
}
@keyframes ball-spin-fade {
    0%,
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    50% {
        opacity: .25;
        -webkit-transform: scale(.5);
        -moz-transform: scale(.5);
        -o-transform: scale(.5);
        transform: scale(.5);
    }
}
:root {
    --primary-color: #202124;
    --button-font-color: #ffffff;
    --secondary-button-border-color: #202124;
    --link-color: #202124;
    --font-default-color: #202124;
    --input-border-color: #DCDCE0;
    --input-background-color: #ffffff;
    --box-border-color: #ffffff;
    --input-border-radius: 8px;
    --page-background-color: #FFFFFF;
}

body {
    font-family: 'Inter-Regular', Arial, sans-serif !important;
    background-color: var(--page-background-color);
    color: var(--font-default-color);
    margin: 0;
    padding: 0;
    overflow-y: hidden;
}

.container {
    min-height: 100vh;
    max-width: 330px;
    display: flex;
    text-align: center;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
    /* justify-content: center;
    padding: 132px 20px;  */
}

@media (min-width: 601px) {
    .container{
        justify-content: center;
        padding: 132px 20px;
    }
}

@media (max-width: 600px) {
    .container{
        padding-top: 47px;
    }
}

.logo {
    height: 36px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    margin-top:33px;
}

.header {
    font-size: 1.55rem;
    margin-top: 20px;
    margin-bottom: 12px;
    line-height: 36px;
}

.subheader {
    font-size: 1.02rem;
    line-height: 24px;

}

button.link {
    font-family: 'Inter-Regular', Arial, sans-serif !important;
    font-size: 16px;
    font-weight: 400 !important;
    font-style: normal;
    line-height: 24px;
    color: #202124;
    letter-spacing: 0px;
    text-align: left;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #202124;
    text-decoration: none !important;
    cursor: pointer;
    border-radius: 0 !important;
    padding: 0 !important;
}

.input-wrapper {
    position: relative;
    margin-top: 20px;
    /* display: flex; */
    align-items: baseline;
    gap: 16px;
    margin-bottom: 20px !important;
}

.floating-label {
    color: #6f7780;
    position: absolute;
    font-size: 1rem;
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    transition: all 0.1s ease;
}

input:focus {
    outline-color: #202124;
}

input:focus~.floating-label {
    color: #202124;
}

input:focus~.floating-label,
input:not(:focus):valid~.floating-label,
input:disabled~.floating-labe {
    top: 0;
    background-color: white;
    height: 20px;
    font-size: 0.9rem;
    bottom: 0px;
    padding-left: 6px;
    padding-right: 6px;
    left: 10px;
    opacity: 1;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    height: 48px;
    padding: 10px 20px;
    border: 1px solid var(--input-border-color);
    border-radius: var(--input-border-radius);
    font-size: 16px;
    color: var(--input-text-color);
    background-color: var(--input-background-color);
}

.forgot-pass {
    display: flex;
    justify-content: start;
    margin-bottom: 24px;
}

.forgot-pass a {
    font-family: 'Inter-Regular', Arial, sans-serif !important;
    font-size: 16px;
    font-weight: 400 !important;
    font-style: normal;
    line-height: 24px;
    font-feature-settings: "case" on, "clig" off, "liga" off;
    color: #202124;
    letter-spacing: 0px;
    text-align: left;
    border-bottom: 1px solid #202124;
    text-decoration: none !important;
    cursor: pointer;
    border-radius: 0 !important;
    padding: 0 !important;
}


.divider-line {
    width: 100%;
    margin-top: 24px;
    margin-bottom: 24px;
    height: 1px;
    background-color: #DCDCE0;
    position: relative;
}

.divider-line .divider-text {
    position: absolute;
    left: 50%;
    /* top: 50%; */
    transform: translate(-50%, -50%);
    font-size: 14px;
    background-color: white;
    color: #6f7780;
    padding-left: 16px;
    padding-right: 16px;
}

button.black {
    height: 48px;
    width: 99%;
    padding: 16px;
    background-color: var(--primary-color);
    color: var(--button-font-color);
    border: none;
    border-radius: 9999px;
    font-size: 1rem;
    cursor: pointer;
}

button.white {
    height: 48px;
    width: 98%;
    padding: 16px;
    border-radius: 9999px;
    font-size: 1rem 	;
    cursor: pointer;
    background-color: white;
    display: flex;
    gap: 16px;
    justify-content: start;
    align-items: center;
    color: #202124;
    border: 1px solid #202124;
}

button.white:focus {
    background-color: #CBCBCB;
}

button:focus {
    box-shadow: 0 0 4px var(--transparency-focus-color), var(--button-dark-focus-shadow) !important
}

.alternate-action {
    margin-top: 16px;
}

.alternate-action a {
    color: var(--link-color);
    font-weight: 700;
    text-decoration: underline;
}

.error-message {
    text-align: left;
    margin-top: var(--spacing-1);
    margin-bottom: var(--spacing-2);
    font-size: 12px;
    line-height: 1.4;
    text-align: left;
    color: #d00e17;
    display: flex;
    align-items: center;
}

.error-message::before {
    content: "";
    display: inline-block;
    height: 16px;
    width: 16px;
    margin-right: 8px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width='16'%20height='16'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M8%2014.667A6.667%206.667%200%201%200%208%201.333a6.667%206.667%200%200%200%200%2013.334z'%20fill='%23D00E17'%20stroke='%23D00E17'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3Cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M8%204.583a.75.75%200%200%201%20.75.75V8a.75.75%200%200%201-1.5%200V5.333a.75.75%200%200%201%20.75-.75z'%20fill='%23fff'/%3E%3Cpath%20d='M8.667%2010.667a.667.667%200%201%201-1.334%200%20.667.667%200%200%201%201.334%200z'%20fill='%23fff'/%3E%3C/svg%3E");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 16px;

}

.error-message:empty::before {
    display: none;
}

input[type="text"],
input[type="password"] {
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid var(--input-border-color) !important;
}

input:focus {
    outline: none !important;
    box-shadow: none !important;
}

input.input-error {
    border: 1px solid #d00e17 !important;
    outline: none !important;
    box-shadow: none !important;
}

input.input-error:focus {
    border: 2px solid #d00e17 !important;
    outline: none !important;
    box-shadow: none !important;
}

input:-webkit-autofill {
    box-shadow: 0 0 0px 1000px white inset !important;
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

input:focus:not(.input-error) {
    border: 2px solid #202124 !important;  /* Black border */
    outline: none;
    box-shadow: none;
}

.input-error {
    border-color: #d00e17 !important;
    box-shadow: 0 0 0 1px #d00e17; /* Optional for emphasis */
}

input.input-error ~ .floating-label {
    color: #d00e17 !important;
}

.footer {
    left: 0;
    width: 100%;
    text-align: center;
    font-feature-settings: 'case' on, 'clig' off, 'liga' off;
    font-family: 'Inter-Regular', Arial, sans-serif !important;
    font-style: normal;
    text-decoration: underline;
    cursor: pointer;
    margin-top:185px;
}

.footer a {
    font-size: 14.5px;
    color: #007bad;
    color: var(--link-color);
    text-decoration: none;
    line-height: 1.5;
    line-height: var(--lg-line-height);
}