﻿body {
    background: #f5fafd;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
}

.left-section {
    background-image: url(assets/images/bg.svg);
    min-height: 100vh;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding: 27px 40px;
}

.right-section {
    background: #fff;
    min-height: 100vh;
    box-shadow: -2px 0 16px rgba(0,0,0,0.03);
    padding: 27px 40px;
}

.min-height {
    min-height: 55vh;
}

.illustration img {
    width: 250px;
    max-width: 100%;
}

.title {
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
    margin-bottom: 30px;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    background: #F8F8F8;
    z-index: 100;
    text-align: right;
    right: 0;
}

    .footer span {
        text-align: right !important;
        padding-right: 20px;
        color: #666666;
        font-size: 9px;
        font-weight: 400;
    }

input.form-control {
    border-radius: 4px;
    font-size: 16px;
    padding: 8px 16px;
    border: 1px solid #BABABA;
    background: #ffffff;
    height: 40px;
    font-weight: 400;
    color: #666666;
}

    input.form-control:focus {
        border-color: #BABABA;
        box-shadow: none;
    }

.btn-primary {
    background: #1177BD;
    border: none;
    border-radius: 4px;
    font-weight: 400;
    font-size: 16px;
    padding: 8px 16px;
    transition: background 0.2s;
}

    .btn-primary:hover {
        background: #1177BD;
    }

.form-content {
    width: 60%;
}

.mobile-view {
    display: none;
}

.mobile-view1 {
    display: none;
}

.desktop-view {
    display: block;
}

/*new css start*/
.leftBord h1 {
    font-size: 25px;
    color: #1177bd;
    margin-top: 15px;
}
.loginInputDiv label {
    margin: 0px;
    color: #1177bd;
    font-size: 14px;
}
.loginInputDiv .box {
    border-radius: 10px;
    border: 2px solid #1a2e5b;
    background-color: #fff;
    height: 49px;
    margin-bottom: 15px;
}
    .loginInputDiv .box .ico {
        float: left;
        background-color: #1177bd;
        height: 45px;
        border-radius: 8px 0px 0px 8px;
        width: 15%;
        text-align: center;
        line-height: 45px;
        color: #fff;
    }
    .loginInputDiv .box .inp {
        float: left;
        width: 85%;
    }
        .loginInputDiv .box .inp input {
            width: 95%;
            border: 0px;
            height: 45px;
            outline: 0px;
            padding-left: 10px;
        }

.LoginBtn {
    width: 100%;
    padding: 8px;
    background-color: #1177bd;
    color: #fff;
    border: 0px;
    border-radius: 5px;
    cursor: pointer;
}



    
    
    
    
    /*new css end*/
    @media (max-width: 767px) {
        .left-section, .right-section {
            min-height: auto;
            border-radius: 0;
        }

        .mobile-view1 {
            display: block;
            width: 100px;
        }

        .desktop-view {
            display: none !important;
        }

        .form-content {
            width: 100%;
        }

        .footer {
            text-align: center;
            width: 96vw
        }

            .footer span {
                padding-right: 20px;
            }

        .min-height {
            min-height: 36vh;
        }

        .title {
            font-weight: 400;
            font-size: 26px;
            line-height: 100%;
            margin-bottom: 30px;
        }

        .loginInputDiv .box .inp input {
            width: 95%;
            border: 0px;
            height: 45px;
            outline: 0px;
            padding-left: 10px;
        }
    }
