*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

@font-face {
    font-family: regular-font;
    src: url(../fonts/poppins-regular.ttf);
}
@font-face {
    font-family: bold-font;
    src: url(../fonts/Poppins-Bold.ttf);
}

html, body {
    height: 100%;
}

body {
    color: #333333;
    font-size: 15px;
    line-height: 1.5;
    font-family: regular-font;

padding: 0;
}

    .h-100 {
        height: 100%;
    }
    .d-flex{
        display: flex;
    }

    .sideimgBox {
        background: linear-gradient(to right, #2473f7 0%, #2575fc 100%);
        /* background-image: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
        background: linear-gradient(131deg, rgba(8, 123, 150, 1) 0%, rgba(23, 181, 218, 1) 43%, rgba(61, 196, 243, 1) 100%); */        
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 15px;
        width: calc(100% - 480px);
        height: 100%;
    }
    .sideimgBox img {
    max-height: 90%;
    object-fit: contain;
    width: 90%;
}
.logintxt .d-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
    .loginBox {
        width: 480px;
        background: #fff;
        box-shadow: 0 -3px 20px rgba(0,0,0,0.3);
        height: 100%;
        padding: 50px 20px;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: auto;
    }
    .topHead {
        margin-bottom: 1.5rem;
    }
        .topHead .logo{
            margin-bottom: 3.2rem;
        }
        .topHead h2 {
            margin: 0;
            font-weight: 600;
            line-height: 1.5;
            font-size: 3rem;
            color: #38385b;
            margin-bottom: 2.5rem;
        }
            .topHead h5  {
                display: block;
                font-size:2.5rem;
                margin-top: 10px;
                text-transform: uppercase;
                letter-spacing: 0.6px;
                margin-bottom: 1rem;
            }
                .topHead h5 small {
                    display: block;
                    opacity: 0.7;
                    line-height: 1.1;
                }
            .position-relative {
            position: relative;
        }
        .position-relative .bi {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1;
            color: #494d4e;
            min-width: 25px;
            min-height: 25px;
        }
    .form-group{
        margin-bottom: 1.5rem;
    }
    .form-controls {
        width: 100%;
        border: 0;
        border: 1px solid #333;
        max-width: 100%;
        height: 45px;
        padding: 5px 15px;
        border-radius: 5px;
    }

    .buttonBotttom{
        position: absolute;
        width: 100%;
        padding: 20px;
        background: #fff;
        z-index: 1;
        left: 0;
        bottom: 0;
    }
    .loginBtn {
        width: 100%;
        border: 0;
        margin: 10px 0;
        padding: 15px 45px;
        text-align: center;
        text-transform: uppercase;
        transition: .5s;
        background-size: 200% auto;
        color: #fff;
        box-shadow: 0 0 20px #eee;
        border-radius: 10px;
        display: block;
        background-image: linear-gradient(to right, #FF512F 0%, #DD2476 51%, #FF512F 100%);
font-family: bold-font;
    }
        .loginBtn:hover {
            background-position: right center;
            color: #fff;
            text-decoration: none;
        }

    .text-Footer{
        margin-top: 2rem;
        color: #333;
    }

@media (max-width: 520px){
    .buttonBotttom{
        position: static;
        padding: 15px 0 0;
    }
}

@media (max-width: 767px){
       .loginBox , .sideimgBox {
        max-width: 100%;
        width: 100%;
       }
       .sideimgBox{
        height: 200px;
       }
        .loginBox{
            height: calc(100vh - 200px);
            overflow: auto;
        }
        .h-100.d-flex{
            flex-wrap: wrap;
        }
}
