body {
    margin: 0;
    padding: 0;
    background: #fff;
    font-family: "Poppins", sans-serif;
}
.loginTitle {
    font-family: "Poppins", sans-serif;
    font-size:25px;
    font-weight:500;
}
.form-sec {
    margin: 0;
    padding: 0;
}

.input-group {
    margin-bottom: 15px;
}

img.brand_logo {
    margin-bottom: 20px;
    width: 60px;
}

.form-control {
    font-size: 15px;
}

.custom-control-label {
    font-size: 14px;
}

.login_btn {
    width: 100%;
    background: #2a6da7 !important;
    color: white !important;
    font-size:16px;
    text-transform:uppercase;
}

    .login_btn:focus {
        box-shadow: none !important;
        outline: 0px !important;
    }

.login_container {
    padding: 0 2rem;
}

.input-group-text {
    background: #2a6da7 !important;
    color: white !important;
    height: 45px;
    border: 0 !important;
    border-radius: 0.25rem 0 0 0.25rem !important;
    width: 45px;
}

.input_user,
.form-control,
.input_pass:focus {
    box-shadow: none !important;
    outline: 0px !important;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #001b54 !important;
}

/* Updated Section */
#forms {
    position: relative;
    top: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#register,
#login {
    width: 100%;
    padding: 50px;
    transition: all 0.5s ease;
    display: none; /* default hidden */
}

#login {
    display: block; /* by default login dikhega */
}

/* When #toregister targeted */
#toregister:target ~ #forms #register {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

#toregister:target ~ #forms #login {
    display: none;
}

/* When #tologin targeted */
#tologin:target ~ #forms #login {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

#tologin:target ~ #forms #register {
    display: none;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media only screen and (max-width: 576px) {
    #register,
    #login {
        padding: 15px;
    }

    .download-section img {
        width: 115px !important;
    }

    .download-section {
        padding: 30px 15px;
    }

    #forms {
        top: 0;
    }
}

@media only screen and (max-width: 767px) {
    .download-section img {
        width: 100px !important;
    }

    .download-section {
        padding: 30px 15px;
    }

    #forms {
        top: 0;
    }

    .card {
        overflow-x: hidden;
        overflow-y: auto;
        height: 80vh;
    }
}

@media only screen and (max-width: 991px) {
    .download-section img {
        width: 110px !important;
    }

    .download-section {
        padding: 30px 15px;
    }

    #forms {
        top: 0;
    }
}
/*html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;  
    background-image:url(../images/banner.jpg);
    background-size:cover;
}*/
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

    /*body::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-image: url(../images/banner.jpg);
        background-size: cover;
        background-position: center;
        z-index: -2;
    }*/

    body::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: #f2f9fa;
        z-index: -1;
    }

.account-pages {
    min-height: 100vh;
}

.card {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 1px 5px #bcc6ca33, 0 2px 2px #bcc6ca24, 0 3px 1px -2px #bcc6ca1f;
}
.input-with-icon {
    position: relative;
    margin-bottom: 15px;
}

    .input-with-icon i {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: #2a6da7;
        font-size: 16px;
    }

    .input-with-icon .form-control,
    .input-with-icon .form-select {
        padding-left: 40px;  
        height: 45px;
        border: 1px solid #a4a4a4;
        border-radius: 6px;
        font-size: 15px;
        font-weight:normal;
    }

        .input-with-icon .form-control:focus,
        .input-with-icon .form-select:focus {
            border-color: #2a6da7;
            box-shadow: 0 0 6px rgba(42, 109, 167, 0.3);
            outline: none;
        }

        .input-with-icon .form-control:focus {
            border-color: #2a6da7;
            box-shadow: 0 0 5px rgba(42,109,167,0.3);
            outline: none;
        }

.input-with-icon-double {
    position: relative;
    margin-bottom: 15px;
}

    .input-with-icon-double .form-control {
        padding-left: 40px; 
        padding-right: 15px; 
        height: 45px;
        border: 1px solid #a4a4a4;
        border-radius: 6px;
        font-size: 15px;
    }

    /* Left lock icon */
    .input-with-icon-double .left-icon {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: #2a6da7;
        font-size: 16px;
        pointer-events: none;
    }

    /* Right eye icon */
    .input-with-icon-double .right-icon {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: #2a6da7;
        font-size: 16px;
        cursor: pointer;
    }


/*.form-control {
    border: 1px solid #a4a4a4;
    height:45px;
}
.form-select {
    border: 1px solid #a4a4a4;
    height: 45px;
}*/
.download-section h4 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
    font-family: sans-serif;
    color: #000;
}

.download-section a {
    display: inline-block;
    margin: 5px 10px 10px 0;
}

.download-section img {
    width: 130px;
}

.download-section img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    .download-section img:hover {
        transform: scale(1.08);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    }

.download-section hr {
    margin: 10px 0;
    border-top: 1px solid #ccc;
}




/* body {
     margin: 0;
     padding: 0;
     background: #fff;
 }

 .form-sec {
     margin: 0;
     padding: 0;
 }

 .input-group {
     margin-bottom: 15px;
 }

 img.brand_logo {
     margin-bottom: 20px;
     width: 50px;
 }

 .form-control {
     font-size: 15px;
 }

 .custom-control-label {
     font-size: 14px;
 }

 .login_btn {
     width: 100%;
     background: #2a6da7 !important;
     color: white !important;
 }

 .login_btn:focus {
     box-shadow: none !important;
     outline: 0px !important;
 }

 .login_container {
     padding: 0 2rem;
 }

 .input-group-text {
     background: #2a6da7 !important;
     color: white !important;
     height: 40px;
     border: 0 !important;
     border-radius: 0.25rem 0 0 0.25rem !important;
     width: 40px;
 }

 .input_user,
 .form-control,
 .input_pass:focus {
     box-shadow: none !important;
     outline: 0px !important;
 }

 .custom-checkbox .custom-control-input:checked~.custom-control-label::before {
     background-color: #001b54 !important;
 }

 #forms {
     position: relative;
     top: 5%;
 }

 #register,
 #login {
     padding: 50px;
     margin: 0;
     position: absolute;
     top: 0;
     width: 100%;
 }

 #register {
     z-index: 21;
     opacity: 0;
 }

 #login {
     z-index: 22;
 }

 #toregister:target~#forms #register,
 #tologin:target~#forms #login {
     z-index: 22;
     -webkit-animation-name: fadeInLeft;
     -moz-animation-name: fadeInLeft;
     -ms-animation-name: fadeInLeft;
     -o-animation-name: fadeInLeft;
     animation-name: fadeInLeft;
     -webkit-animation-delay: .1s;
     -moz-animation-delay: .1s;
     -o-animation-delay: .1s;
     -ms-animation-delay: .1s;
     animation-delay: .1s;
 }

 #toregister:target~#forms #login,
 #tologin:target~#forms #register {
     -webkit-animation-name: fadeOutLeft;
     -moz-animation-name: fadeOutLeft;
     -ms-animation-name: fadeOutLeft;
     -o-animation-name: fadeOutLeft;
     animation-name: fadeOutLeft;
 }


 .animate {
     -webkit-animation-duration: 0.5s;
     -webkit-animation-timing-function: ease;
     -webkit-animation-fill-mode: both;

     -moz-animation-duration: 0.5s;
     -moz-animation-timing-function: ease;
     -moz-animation-fill-mode: both;

     -o-animation-duration: 0.5s;
     -o-animation-timing-function: ease;
     -o-animation-fill-mode: both;

     -ms-animation-duration: 0.5s;
     -ms-animation-timing-function: ease;
     -ms-animation-fill-mode: both;

     animation-duration: 0.5s;
     animation-timing-function: ease;
     animation-fill-mode: both;
 }

 @media only screen and (max-width:576px) {

     #register,
     #login {
         padding: 15px;
     }
 }*/
