﻿.login-wraper {
    height: 100vh;
    background-color: #fff;
}

.bi-person,
.bi-eye-slash {
    height: 20px;
    width: 20px;
}

.logo {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    padding: 1rem 0rem 2rem 0rem;
    margin-left: -6rem;
}

.logo img {
    width: 80px;
}

.logo .logo-text h3 {
    margin-bottom: 0;
    font-size: 1.6rem;
    line-height: 1.1;
}

.login-section {
    display: flex;
    justify-content: center;
    gap: 5rem;
}

.section__left {
    flex-basis: 60%;
    margin-left: 3rem;
    position: relative;
}

.section__left img {
    width: 100%;
}

.system-operated-by {
    position: absolute;
    bottom: -22px;
    left: -61px;
}

.system-operated-by h4 {
    font-weight: 400;
}

.system-operated-by h2 {
    font-size: 1.6rem;
}

.section__right {
    flex-basis: 30%;
    background-color: rgb(242 242 242);
    border-radius: 10px;
}

    .section__right .right__form {
      /*  display: flex;*/
        justify-content: center;
        flex-direction: column;
        height: 62vh;
        padding-left: 2rem;
        padding-right: 2rem;
    }

.section__right .right__form .heading {
    color: #f7b40e;
    font-weight: 400;
}

.forgot-heading {
    font-size: 1.8rem;
    color: #f7b40e;
    font-weight: 400;
    margin-top:15px;
}

.captcha-sec {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}


.captcha-details {
    display: flex;
}

.captcha-details img {
    object-fit: fill;
    width: 100px;
    height: 57px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.refresh-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    background-color: #ddd;
    text-decoration: none;
    cursor: pointer;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.refresh-btn:hover svg {
    transform: rotate(90deg);
    transition: 0.5s ease-out;
    fill: #000;
}

.btn-orange {
    background: #f7b40e;
    color: #000;
    font-size: 1.2rem;
    margin: 3rem 0rem 1rem 0rem;
    width: 100%;
    cursor: pointer;
    font-weight: 500;
}

.btn-orange:hover {
    background: #e1a40d;
    transition: 0.3s;
}

.forgotPassword:hover {
    color: #0d6efd !important;
}

.form-control:focus {
    border-color: #e4c77e;
}

.text-grey-500 {
    color: #4e4e4e;
}


@media only screen and (max-width: 1440px) 
{
    .logo {
        margin-left: 0rem;
    }

    .system-operated-by {
        left: 0px;
    }
}

@media only screen and (max-width: 1366px) 
{
    .section__right {
        flex-basis: 40%;
    }
    .section__left {
        margin-left: 0rem;
    }

    .system-operated-by {
        bottom: 1px;
    }

    .logo {
        margin-left: -4rem;
    }
}

@media only screen and (max-width: 1024px) {
    .logo {
        margin-left: 0rem;
    }

    .section__right {
        flex-basis: 50%;
        z-index: 1;
    }

    .login-section {
        gap: 0rem;
    }
   
}
@media only screen and (max-width: 768px) {
    .section__left {
       display:none;
    }

    .logo {
        justify-content: center;
        padding: 1rem 0rem 1rem 0rem;
    }

    .section__right {
        flex-basis: 60%;
    }

    .enter-captcha {
        flex-basis: 100%;
    }

    .btn-orange {
        margin: 2rem 0rem 1rem 0rem;
    }

    .section__right .right__form {
        height: auto;
        padding: 2rem;
    }

}

@media only screen and (max-width: 640px) 
{
    .section__right {
        flex-basis: 90%;
    }
    .logo img {
        width: 60px;
    } 
}


@media only screen and (max-width: 425px) {
    .captcha-sec {
        flex-direction: column-reverse;
        align-items: baseline;
    }

    .captcha-details img {
        width: 100%;
        height: 50px;
    }

    .captcha-details {
        width: 100%;
    }

    .enter-captcha {
        width: 100%;
    }
    .logo .logo-text h3 {
        font-size: 1.4rem; 
    }

    .section__right .right__form {
        padding: 1.5rem;
    }
}

@media only screen and (max-width: 320px)
{
    .logo .logo-text h3 
    {
        font-size: 1.3rem;
    }
}



