@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
    margin: 0;
    line-height: inherit;
    font-family: Inter, sans-serif;
    background-color: #F5F5F5;
}

.mPect-box {
    min-height: 100vh;
    align-items: stretch;
    display: flex;
}

.left-bg-box {
    display: flex;
    background-repeat: no-repeat;
    background-size: cover;
    width: 45%;
    border-radius:0 45px 45px 0;
    position: relative;
    align-items: center;
}

.absolute-overlay {
    opacity: 0.6;
    background-color: #000;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0 45px 45px 0;
    
}

.heading-full {
    width: 100%;
    padding-left: 6rem;
    padding-right: 6rem;
    z-index: 10;
    position: relative;

}
.heading-full h1 {
    font-size:3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}


.social-box {
    text-align: center;
    padding: 1rem;
    justify-content: center;
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    gap: 1rem;
}


.right-bg-box {
    width: 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-box {
    width: 100%;
    max-width: 550px;
}

.login-box img {
    max-width: 180px;
}

.login-box h2 {
    font-weight: 700;
    color: #0A0346 ;
    font-size: 24px;
}

.login-box p {
    font-size: 14px;
    font-weight: 400;
    color: #101828;
    line-height: 20px;
}

.login-box .form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
}

.login-box .form-control:focus {
    box-shadow: none;
    border-color: #0d6efd;
}

.login-box .btn-primary {
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
}

.login-box a {
    color: #0d6efd;
}

.login-box a:hover {
    color: #0a58ca;
}


.forgot-password {
    color: rgb(190 8 88) !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

.btn-primary {
    background-color: #0A0346;
    color: #fff;
    border: 1px solid #0A0346;
    border-radius: 8px;
    padding: 8px 16px;
    box-shadow: 0px 1px 2px 0px #1018280D;
    font-size: 14px;
    font-weight: 500;
}

.text-red {
    color: rgb(190 8 88) !important;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .heading-full {
        padding: 0 2rem;
    }
    
    
}

@media only screen and (max-width: 767px) {
    .mPect-box {
       
        flex-wrap: wrap;
    }
    .absolute-overlay {
        border-radius: 0 0 45px 45px;
    }
    .heading-full {
        padding: 0 1rem;
        text-align: center;
        top: -15px;
        margin-bottom: 1rem;
    }
    .heading-full h1 {
        font-size: 24px;
    }
    .left-bg-box {
        width: 100%;
        border-radius: 0 0 45px 45px;
        padding: 20px;
    }

    .right-bg-box {
        width: 100%;
    }
    
}

