/* toprate-login.css */
body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    margin-bottom: 0;
    background-color: #F6F2FF;

    @media (min-width: 768px) {

        overflow-y: hidden;
    }
}

@media only screen and (max-width: 600px) {
    .keepLoggedInContainer {
        display: none;
    }

    .forgetPasswordLink {
        /* display: none; */
    }
}

.container2 {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;

    @media (min-width: 768px) {
        flex-direction: row;
    }
}

.darkColumn {
    display: flex;
    background: linear-gradient(to bottom right, var(--tw-gradient-stops));
    width: 100%;
    border: 2px;
    flex-direction: column;
    background-color: #290B6A;
    background-image: url('../img/map-background.png');
    background-size: cover;
    background-position: center;


    @media (min-width: 768px) {
        width: 47%;
        height: 100%;
    }
}

.lightColumn {
    width: 100%;
    background: #290B6A;
    height: 100%;

    @media (min-width: 768px) {
        width: 53%;
        height: 100%;
    }

    @media (min-width: 768px) {
        width: 53%;
        height: 100%;
    }
}

.header {
    display: flex;
    margin-right: 0.5rem;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

.logo {
    padding: 1.25rem;

    @media (min-width: 768px) {
        padding: 2.5rem;
    }
}

.image {
    width: 127px;
    height: 32px;

    @media (min-width: 768px) {
        width: 135px;
        height: 40px;
    }
}

.login-image {
    display: none;

    @media (min-width: 768px) {
        max-width: 100%;
        max-height: 100%;
        width: 450px;
        height: 450px;

        display: block;
        margin: auto;
    }

    @media (min-width: 1024px) {
        max-width: 100%;
        max-height: 100%;
        background-attachment: fixed;
        display: block;
        margin: auto;
    }
}

.header-button {
    padding: 0.5rem;
    background: none;
    outline: none;
    border: none;

    @media (min-width: 768px) {
        display: none;
    }
}

.header-span {
    color: rgb(255 255 255);
}

.darkInnerContainer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0px 0px 0px 0px;

    @media (min-width: 540px) {
        margin-bottom: 1.25rem;
    }
}

.lightInnerContainer {
    display: flex;
    flex-direction: column;
    background: #F6F2FF;
    align-items: center;
    width: 100%;
    height: 100%;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;

    @media (min-width: 540px) {
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
    }

    @media (min-width: 768px) {
        justify-content: center;
        align-items: center;
    }
}

.darkInnerTextContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0px 28px 0px 28px;

    @media (min-width: 768px) {
        text-align: left;
        /* width: 100%; */
        padding: 0px 58px 0px 58px;
    }
}

.leadText {
    color: #ffffff;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    width: 100%;
    /* @media (min-width: 768px) {
        font-size: 30px;
        line-height: 36rem;
    } */

    @media (min-width: 1024px) {
        font-size: 36px;
        line-height: 40px;
    }
}

.leadText2 {
    color: #A3F6EF;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    width: 100%;
    /* @media (min-width: 768px) {
        font-size: 30px;
        line-height: 36rem;
    } */

    @media (min-width: 1024px) {
        font-size: 36px;
        line-height: 40px;
    }
}

.subText {
    display: none;

    @media (min-width: 540px) {
        color: #ffffff;
        display: block;
        font-size: 20px;
        line-height: 30px;
        width: 100%;
    }
}

.loginButton {
    display: none;
    padding: 0.5rem;
    margin-top: 2.5rem;
    background-color: #ffffff;
    justify-content: center;
    align-items: center;
    width: 75%;
    color: #591ED6;
    ;
    border: none;
    border-radius: 5px;

    @media (min-width: 768px) {
        display: flex;
        padding: 0.75rem;
        margin-top: 5rem;
    }
}

.formSection {
    display: flex;
    flex-direction: column;
    width: 75%;
    margin-top: 1rem;
    align-items: center;
    z-index: 10;
}

.formSectionHeader {
    color: #141414;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 120.02%;
    text-align: center;
    margin-bottom: 16px;
    margin-top: 0%;

    @media (min-width: 768px) {
        font-size: 36px;
        line-height: 162.02%;
    }
}

.formSectionSubtext {
    color: #141414;
    opacity: 70%;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24%;
    text-align: center;
    display: block;

    @media (min-width: 540px) {
        display: none;
    }
}

.form {
    width: 100%;
}

.inputLabel {
    display: block;
    position: relative;
    margin-top: 15px;
}

.inputName {
    color: #141414;
    font-weight: 600;
    font-size: 14px;
    line-height: 23px;
}

.input {
    display: flex;
    padding-left: 10px;
    top: 31px;
    margin-top: 0.5rem;
    outline: none;
    width: 100%;
    height: 2.5rem;
    background: #FFFFFF;
    border: 1px solid #ECECEC;
    border-radius: 5px;
}

.inputSpan {
    font-weight: 400;
    font-size: 12px;
    line-height: 12px;
    color: rgba(24,24,24,0.45);
}

.inputButton {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: 10px;
    transform: translateY(-165%);
}

.formButtomSection {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.keepLoggedInContainer {
    display: flex;
    width: 100%;
    color: #141414;
}

.keepLoggedIn {
    height: 15px;
    width: 15px;
    border-radius: 4px;
    left: 2.5px;
    top: 2.5px;
}

.keepLoggedInLabel {
    height: 12px;
    font-size: 12px;
    line-height: 16px;
    text-align: left;
    margin-left: 5px;

    @media (min-width: 768px) {
        font-size: 14px;
        line-height: 20px;
    }
}

.forgetPasswordSpan {
    font-size: 14px;
    line-height: 12px;
    color: #591ED6;
    white-space: nowrap;
    text-align: right;
}

.forgetPasswordLink {
    font-size: 12px;
    line-height: 16px;
    color: #591ED6;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;

    @media (min-width: 768px) {
        font-size: 14px;
        line-height: 20px;
    }
}

.login {
    padding: 0.5rem;
    margin-top: 2.5rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 56px;
    background: #591ED6;
    padding: 12px;
    border-radius: 5px;
    border: none;
}

#loginButton.disabled {
    background: #7f7a7d !important;
}

.loginSpan {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 16px;
    line-height: 12px;
}

.bottomContainer {
    font-size: 12px;
    line-height: 16px;
    margin-top: 48px;
    width: 100%;
    margin-bottom: 24px;

    @media (min-width: 768px) {
        font-size: 14px;
        line-height: 20px;
    }
}

.buttomSpan {
    color: #141414;
}

.signUp {
    color: #591ED6;
    text-decoration: none;
}

.bubble1 {
    position: absolute;
    width: 91px;
    height: 91px;
    border-radius: 50%;
    background: linear-gradient(129.81deg, rgba(89, 30, 214, 0.31) 0.08%, rgba(255, 255, 255, 0) 108.11%);
    opacity: 0.2;
    transform: rotate(15deg);
    left: 72px;
    top: 0;
}

.bubble2 {
    position: absolute;
    width: 91px;
    height: 91px;
    border-radius: 50%;
    background: linear-gradient(129.81deg, rgba(89, 30, 214, 0.31) 0.08%, rgba(255, 255, 255, 0) 108.11%);
    opacity: 0.2;
    transform: rotate(15deg);
    left: 51px;
    bottom: 200.73px;
    display: none;

    @media (min-width: 768px) {
        display: flex;
    }
}

.bubble3 {
    position: absolute;
    width: 91px;
    height: 91px;
    border-radius: 50%;
    background: linear-gradient(129.81deg, rgba(89, 30, 214, 0.31) 0.08%, rgba(255, 255, 255, 0) 108.11%);
    opacity: 0.2;
    transform: rotate(15deg);
    left: 5px;
    bottom: 10px;

    @media (min-width: 768px) {
        left: 38%;
        bottom: 100px;
    }
}

.bubble4 {
    display: none;
    position: absolute;
    width: 162px;
    height: 162px;
    border-radius: 50%;
    background: linear-gradient(129.81deg, rgba(89, 30, 214, 0.31) 0.08%, rgba(255, 255, 255, 0) 108.11%);
    opacity: 0.1;
    transform: rotate(-44.97deg);
    left: 44%;

    @media (min-width: 768px) {
        display: flex;
        top: 150.7px;
    }
}

.bubble5 {
    position: absolute;
    width: 162px;
    height: 162px;
    border-radius: 50%;
    background: linear-gradient(129.81deg, rgba(89, 30, 214, 0.31) 0.08%, rgba(255, 255, 255, 0) 108.11%);
    opacity: 0.1;
    transform: rotate(-44.97deg);
    left: 58%;
    bottom: 40px;
    display: none;

    @media (min-width: 768px) {
        display: flex;
    }
}

.bubble6 {
    position: absolute;
    width: 162px;
    height: 162px;
    border-radius: 50%;
    background: linear-gradient(129.81deg, rgba(89, 30, 214, 0.31) 0.08%, rgba(255, 255, 255, 0) 108.11%);
    opacity: 0.1;
    transform: rotate(-44.97deg);
    right: 2.5rem;
    top: 145.06px;
}

.bubble7 {
    position: absolute;
    width: 91px;
    height: 91px;
    border-radius: 50%;
    background: linear-gradient(129.81deg, rgba(89, 30, 214, 0.31) 0.08%, rgba(255, 255, 255, 0) 108.11%);
    opacity: 0.1;
    transform: rotate(-15deg);
    right: 300.43px;
    top: 20px;
    display: none;

    @media (min-width: 768px) {
        display: flex;
    }
}

.bubble8 {
    position: absolute;
    width: 91px;
    height: 91px;
    border-radius: 50%;
    background: linear-gradient(129.81deg, rgba(89, 30, 214, 0.31) 0.08%, rgba(255, 255, 255, 0) 108.11%);
    opacity: 0.1;
    transform: rotate(-15deg);
    left: 5%;
    top: 25%;

    @media (min-width: 768px) {
        right: 15.99%;
        bottom: 205.33px;
    }
}

.svg-fill {
    fill: #7f7a7d;
}

#showPasswordButton {
    display: none
}

#hidePasswordButton {
    display: block
}
