/*--------------------------------------------------------------
# General Login Style
--------------------------------------------------------------*/
:root {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins";
    background: #f6f9ff;
    color: #444444;
}

a {
    color: #367AFF;
    text-decoration: underline;
    font-size: 15px;
}

a:hover {
    color: #367AFF;
    text-decoration: none;
}

a.text-danger {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins";
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
    margin-top: 60px;
    padding: 20px 30px;
    transition: all 0.3s;
}

@media (max-width: 1199px) {
    #main {
        padding: 20px;
    }
}

/*--------------------------------------------------------------
# label
--------------------------------------------------------------*/
.textOnInput {
    position: relative;
}

.textOnInput label {
    background-color: #fff;
    position: absolute;
    top: -10px;
    left: 15px;
    padding: 2px;
    z-index: 1;
    height: 15px;
}

.textOnInput label:after {
    background-color: #fff;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 4px;
    z-index: -1;
}

label {
    font-size: 10px;
    color: #367AFF;
    font-weight: 500;
    display: inline-block;
    margin-bottom: .5rem;
}

.form-control {
    box-shadow: none !important;
    padding: 12px;
}

.col-12 .forgot-btn {
    font-size: 12px;
    color: #367AFF;
    font-weight: 600;
    /* border-bottom: #367AFF solid 1px; */
}

.col-12 .forgot-btn:hover {
    color: #367AFF;
}

/*--------------------------------------------------------------
# Button
--------------------------------------------------------------*/
.btn-primary {
    background-color: #5CB75E;
    font-weight: 500;
    font-size: 16px;
}

.btn-primary:hover {
    background-color: #45A447;
    font-weight: 600;
    font-size: 16px;
}

.hr-container {
    position: relative;
    text-align: center;
    height: 3px;
    margin: 20px 0;
}

.hr-container hr {
    border: 0;
    border-top: 1px solid #000;
    margin: 0;
}

.hr-container .hr-text {
    position: absolute;
    top: -0.6em;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 0 10px;
}

.form-check-label {
    font-size: 13px;
    font-weight: 600;
}

.form-check-input {
    border: #000 solid 2px;
}

p.resend-otp a {
    font-weight: 400;
    font-size: 16px;
    padding-right: 1.2rem;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #4154f1;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #6776f4;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}



@keyframes dropdown-animate {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

    0% {
        opacity: 0;
    }
}


/* Card */
.card {
    margin-bottom: 30px;
    border: none;
    width: 600px;
    border-radius: 15px;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.card-header,
.card-footer {
    border-color: #ebeef4;
    background-color: #fff;
    color: #798eb3;
    padding: 15px;
}

.card-title {
    padding: 5px 0 15px 0;
    font-size: 40px;
    font-weight: 700;
    /* color: #012970; */
    font-family: "Poppins", sans-serif;
}

.card-title span {
    color: #899bbd;
    font-size: 14px;
    font-weight: 400;
}

/* card body */
.card-body {
    padding: 0 30px 30px 30px;
}

.card-body p.small {
    color: #969696;
    font-size: 14px;
}

.card-body .small {
    color: #969696;
    font-size: 14px;
}

.card-img-overlay {
    background-color: rgba(255, 255, 255, 0.6);
}

/* doccument uplode css */

#document-bg {
    position: relative;
}

#document-bg .bg-image {
    background: url('../img/rectangle-bg.jpg');
    background-size: cover;
    width: 500px;
    padding-bottom: 44px;
}

#uplodeSuccessButton {
    background-color: #C7F7DC;
    color: #268C4D;
}

#uplodeText {
    color: #000;
    font-weight: 600;
    padding-bottom: 5px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
@media (min-width: 1200px) {
    .logo {
        width: 280px;
    }
}

.logo img {
    max-height: 62px;
    margin-top: 15px;
}

/* ----------------------------------------------------- 
# Login OTP
-------------------------------------------------------- */

#pin .form-control,
#otp .form-control {
    box-shadow: none;
    border: 1px solid #F5F7FA;
    background-color: #F5F7FA;
    border-radius: 8px;
    height: 4rem;
    width: 4rem;
}

#pin .form-control:focus,
#otp .form-control:focus {
    box-shadow: none;
    border: 1px solid #F5F7FA;
    background-color: #F5F7FA;
    border-radius: 8px;
}

#pin .form-control .validate,
#otp .form-control .validate {
    border-radius: 20px;
    height: 40px;
    width: 140px;
    background-color: red;
    border: 1px solid red;
}

#pin,
#otp {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-trans {
    background: #5CB75E;
    color: white;
    width: 100%;
    border-color: #5CB75E !important;
    height: 50px;
    border-radius: 12px;
}

.btn-trans:hover {
    background: #5CB75E !important;
    color: white !important;
    width: 100%;
    border-color: #5CB75E !important;
}
.btn-trans:focus-visible,
.btn-trans:active {
    background: #5CB75E !important;
    color: white !important;
    width: 100%;
    border-color: #5CB75E !important;
}
.btn-trans:disabled {
    background-color: #5CB75E !important;
    color: white !important;
}
