@import url(common.css);
.signinContainer{
    display: flex;
    min-height: 100vh;
}

.brand-section {
    position: relative;
    background-color: var(--main-bg-clr);
    color: var(--white-clr);
    width: 40%;
    min-width: 450px;
    padding: 3.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand-logo {
   /* position: absolute;
    left: 50%;
    top: 20%;
    transform: translateX(-50%);*/
    text-align: center;
    padding-bottom: 32px;
}
.brand-logo img {
    width: 100px;
}

.lightningFlash {
    height: 40vh;
    max-height: 500px;
    display: flex;
    justify-content: center;
    /* margin-bottom: 3rem; */
    margin: 6.4rem 0;
}
.passIcon{
    position: absolute;
    top: 50% !important;
    transform: translateY(-50%);
    right: 7px;
    opacity: 0;
    z-index: 1;
    cursor: pointer;
}
.errorMsg{
    color: var(--danger-clr);
    position: absolute;
    width: 100%;
    bottom: -18px;
    left: 0;
    font-size: 11px;   
    font-weight: 500;
    display: none;     
}
.passIcon_show{
    display: none;
}

.lightningFlash img {
    height: 100%;
}

.brand-section h1 {
    width: 100%;
    margin-top: 2.4rem;
    font-size: var( --font-s-32px);
    font-weight: var(--font-w-600);
    line-height: 4.8rem;
}

.brand-section p {
    width: 100%;
    margin-top: var(--font-s-base-d);
    font-size: var(--font-s-18);
    font-weight: var(--font-w-300);
    opacity: 0.8;
    line-height: var(--font-s-32px);
}

.keyIcon {
    width: 100%;
}

.keyIcon svg {
    transform: rotate(110deg);
    transform-origin: center;
}

.login-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box, .resetLink {
    max-width: 600px;
    min-width: 450px;
    width: 100%;
    padding: 3.2rem;
    background-color: var(--white-clr);
    border-radius: 0.8rem;
}
.resetLink{
    display: none;
}

.greeting {
    font-size: var(--font-s-base-d);
    color: var(--sub-text-clr);
    text-align: center;
    margin-bottom: 1.6rem;
}
.greeting span{
    vertical-align: sub;
}
.login-section h2 {
    font-size: var(--font-s-20);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: var(--font-w-600);
}
.resentMailText{
    line-height: 25px;
    margin-bottom: 2rem;
}
.resentMailText strong{
    color: #3395F9;
    font-weight: var(--font-w-500);
    cursor: pointer;
}
.forGotMailText{
    color: var(--text-clr);
}
.forGotMailText strong{
    cursor: pointer;
    color: var(--primary-clr);
    font-weight: var(--font-w-500);
}

.login-sectionform {
    display: flex;
    flex-direction: column;
}

.login-section label {
    color: var(--text-clr);
    font-size: var(--font-s-base-m);
    font-weight: var(--font-w-400);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.login-section input {
    width: 100%;
    padding: 1.3rem;
}

.options {
    display: flex;
    justify-content: space-between;
    font-size:var( --font-s-13);
    margin-bottom: 1.5rem;
}

.options input[type="checkbox"] {
    margin-bottom: 0;
    margin-right: 0.8rem;
    width: unset;
    cursor: pointer;
    border: var(--primary-clr);
}

.options a {
    text-decoration: none;
    color: var(--primary-clr);
}

.btn-login {
    width: 100%;
    margin-bottom: 1.25rem;
    opacity: 0.6;
    pointer-events: none;
}
.btnActive{
    pointer-events: unset;
    opacity: 1;
}
.resentMailText{
    line-height: 25px;
    margin-bottom: 4rem;   
}
.resentMailText strong{
    color: #3395F9;
    font-weight: var(--font-w-500);
}
.forGotMailText a{
    color: var(--primary-clr);
    font-weight: var(--font-w-600);
}

.btn-google {
    height: var(--primaryBtn-h);
    margin-top: 0.8rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white-clr);
    color: var(--primary-clr);
    padding: 1.3rem;
    font-size: var(--font-s-base-d);
    border: 1px solid var(--border-clr);
    cursor: pointer;
}
.logiText{
    text-align: center;
    margin-top: 2rem;
    font-size: var(--font-s-base-d);
}
.logiText a{
    text-decoration: none;
    color: var(--primary-clr);
}

.btn-google img {
    width: 20px;
    margin-right: 0.8rem;
}
.popupMessageSlider{
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.popupMessageSlider .loginMessageSlider1, .loginMessageSlider2, .loginMessageSlider3{
    position: absolute;
    left: 100vw;
}
.popupMessageSlider .loginMessageSlider1.sliderActive, .popupMessageSlider .loginMessageSlider2.sliderActive, .popupMessageSlider .loginMessageSlider3.sliderActive{
    left: 0;
    transition: all 0.3s ease-out;
}
.sliderPagination{
    width: 100%;
    text-align: left;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.paginationDot1, .paginationDot2, .paginationDot3{
    display: inline-block;
    height: 5px;
    width: 5px;
    background-color: var(--secondary-clr);
    border-radius: 50%;
    cursor: pointer;
}
.paginationDot1.sliderActive, .paginationDot2.sliderActive, .paginationDot3.sliderActive{
    width: 25px;
    border-radius: 2.5rem;
    height: 3px;
    background-color: var(--white-clr);
}

@media (max-width: 1600px) {
    .brand-section {
        width: 35%;
    }
    .login-section {
        width: 100%;
    }
}

@media (max-width: 1440px) {
    .brand-section {
        width: 30%;
    }
    .login-section {
        width: 100%;
    }
}

@media (max-width: 1023px) {
    .signinContainer {
        flex-direction: column;
    }
    .brand-section,
    .login-section {
        width: 100%;
    }
}

@media (max-width: 768px) {

    .brand-section {
        padding: 2.4rem;
    }

    .brand-section h1 {
        font-size: var(--font-s-25);
    }

    .brand-section p {
        font-size: var(--font-s-17);
    }
}

@media (max-width: 480px) {
    .brand-section {
        padding: 1.6rem ;
    }
    .popupMessageSlider,
    .sliderPagination,
    .keyIcon {
        display: none;
    }
    .lightningFlash {
        margin: 8rem 0 0;
    }
    .login-box,
    .brand-section {
        min-width: unset;
    }
    .lightningFlash {
        height: 30vh;
    }
    /* .brand-logo img {
        max-width: 140px;
    } */
    .login-section {
        flex-grow: 1;
    }
}

.invalid-input{
    width: 100%;
    margin-top: 0.25rem;
    font-size: 14px;
    color: #dc3545;
}
