body {
    margin: 0px;
    padding: 0px;
    font-size: 14px;
    line-height: 15px;
    position: relative;
    font-family: "Roboto Condensed", sans-serif;
}

.mainSectionLogin {
    background-image: linear-gradient(#0088cc, #2c3e50);
    height: 100vh;
    /* display: flex;
    justify-content: center;
    align-items: center; */
}

.loginMainInner {
    width: 400px;
    max-width: 400px;
    margin: 0 auto;
    padding: 100px 0 0 0;
}

.logoSec {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.logoSec img {
    max-width: 250px;
    max-height: 100px;
}

.formSection {
    width: 100%;
    padding: 35px 30px 10px;
    box-sizing: border-box;
    margin-top: 15px;
    background: #eee;
    border-radius: 4px;
    box-shadow: 0px 0px 4px #fff;
}

.form-control {
    display: block;
    width: 93%;
    padding: 6px 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.error {
    color: #ff0000;
    margin-top: 10px;
    margin-bottom: 10px;
    float: left;
    display: none;
}

.form-control:focus {
    border: 2px solid #0088cc;
    box-shadow: none;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: none;
}

.formSection button {
    color: #fff;
    background-color: #0088cc;
    border-color: #0088cc;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 7px 10px;
    font-size: 14px;
    line-height: 1.5;
    width: 100%;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin-bottom: 14px;
}

.formSection button i {
    font-size: 12px;
    margin-left: 10px;
}

.copyright {
    text-align: center;
    color: #fff;
    margin-top: 15px;
}

.formSection h2 {
    color: #000;
    position: relative;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.2;
    font-size: 28px;
    font-family: inherit;
    text-align: center !important;
}

.formSection h2:before,
.formSection h2:after {
    content: "";
    height: 1px;
    position: absolute;
    top: 23px;
    width: 20%;
    background: #000;
}

.formSection h2:before {
    left: 0;
}

.formSection h2:after {
    right: 0;
}


/* recap */

.recap {
    position: fixed;
    bottom: 20px;
    right: 0;
}

.showSec {
    width: 70px;
    text-align: center;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    background-color: #fff;
}

.capimg {
    margin: 5px 15px 0 15px;
    background-size: 40px;
    height: 40px;
    background-image: url('recap.png');
    background-repeat: no-repeat;
    width: 40px;
}

.showSec p {
    font-size: 7px;
    font-family: "Poppins", sans-serif !important;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.m-b-u-20 {
    margin-bottom: 20px;
}

.m-b-p-20 {
    margin-bottom: 20px;
}

@media screen and (max-width:600px) {
    body {
        height: 100vh;
    }
    .mainSectionLogin {
        height: 100%;
        background-color: transparent;
    }
}