@import url(font.css);

body {
    font-size: 16px;
    font-family: "Poppins";
    font-weight: normal;
    color: #0E142E;
    line-height: 1.6;
}

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

.background-sty {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.account-logo {
    padding: 10px 0;
    text-align: center;
    background-color: #fff;
}

.account-logo a {
    display: inline-block;
    width: auto;
    margin: 0 auto;
}

label {
    display: block;
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
}

.login-form {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
}

textarea,
select,
input {
    width: 100%;
    padding: 10px 15px;
    border-radius: 5px;
    border: 2px solid #D1D9E7;
    outline: none;
    background-color: #fff;
    min-height: 50px;
    color: #868996;
    font-size: 16px;
}

input[type="checkbox"],
input[type="radio"] {
    width: auto;
    min-height: auto;
}

input[type="submit"] {
    margin-top: 10px;
    background-color: #1F6BFF;
    color: #fff;
    font-weight: 600;
    border-color: #1F6BFF;
    transition: 0.3s all ease-in-out;
    width: auto;
}

input[type="submit"]:hover {
    border-color: #061F59;
    background-color: #061F59;
    transition: 0.3s all ease-in-out;
}

select::placeholder,
textarea::placeholder,
input::placeholder {
    color: #868996;
}

input[type=file] {
    padding: 10px 15px;
    position: relative;
}

input[type=file]::file-selector-button {
    display: none;
}

input[type=file]::after {
    content: "\f1c5";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font: normal normal normal 14px/1 FontAwesome;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    -ms-appearance: none !important;
    -o-appearance: none !important;
    appearance: none !important;
    background-image: url("./../images/select-down-arrow.png");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
}

select option {
    background-color: white !important;
    font-weight: normals !important;
    color: #333 !important;
    border: none !important;
    box-shadow: 0px 0px 0px 5px rgb(31 107 255 / 20%) !important;
}

input[type=checkbox] {
    position: relative;
    border: 1px solid #D1D9E7;
    border-radius: 7px;
    background: hsl(220deg 100% 56% / 10%);
    cursor: pointer;
    line-height: 0;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 30px;
    width: 30px;
    appearance: none;
}

input[type=checkbox]:hover {
    opacity: 1;
}

input[type=checkbox]:checked {
    opacity: 1;
}

input[type=checkbox]:before {
    content: '';
    position: absolute;
    right: 50%;
    top: 50%;
    width: 9px;
    height: 15px;
    border: solid #1F6BFF;
    border-width: 0 2px 2px 0;
    margin: -2px -3px 0 0px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
}

/* input[type=checkbox]:hover::before, */
input[type=checkbox]:checked::before {
    opacity: 1;
}

.checkbox-group>div {
    display: flex;
    align-items: center;
}

.checkbox-group label {
    flex-basis: fit-content !important;
}

a.com-button,
.signup-content a {
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    padding: 15px 25px 13px 25px;
    display: inline-block;
    line-height: 1;
    font-weight: 500;
    border-radius: 5px;
    transition: 0.3s all ease-in-out;
}

a.com-button:hover,
.signup-content a:hover {
    background-color: #061F59;
    color: #fff;
    transition: 0.3s all ease-in-out;
}

a.in-text {
    padding: 0;
    text-decoration: underline;
    background: none;
    transition: 0.3s all ease-in-out;
    color: #0d6efd;
}

a.in-text:hover {
    color: #0E142E;
    transition: 0.3s all ease-in-out;
    background: transparent;
}

button {
    padding: 9px 15px !important;
}

/* Login Page */

section.login-section {
    background-image: url("../images/login-bg.png");
    min-height: 100vh;
}


.signup-content,
.login-content-section {
    padding: 60px 0;
}

.signup-content .row,
.login-content-section .row {
    min-height: calc(100vh - 200px);
}

section.login-section h1 {
    color: #fff;
    font-size: 75px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
}

.login-side-content h1 span {
    font-weight: normal;
}

.login-side-content p {
    color: #fff;
    text-align: justify;
}

.login-side-content .login-form {
    margin-left: 50px;
}

.login-form h2 {
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.login-form p {
    text-align: center;
}

.login-form .login-form-inner {
    margin-top: 25px;
}



/* Sign Up Page */

.sign-section {
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.sign-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/sign-up-bg.jpg");
    z-index: -1;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.sainik-details>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sainik-details pre {
    margin: 0;
    font-size: 16px;
    font-family: "Poppins";
    font-weight: normal;
    color: #555;
    line-height: 1.6;
}

.sainik-details {
    padding: 20px;
    border: 2px solid #D1D9E7;
    border-radius: 10px;
}

hr {
    color: #D1D9E7;
    opacity: 1;
}

.signUp-2,
.signUp-3,
.signUp-2 {
    display: none;
}

/* Sign Up Tab Pages */

.signup-tab-option a {
    text-decoration: none;
    display: block;
    padding: 12px 0;
    background-color: #EBEEF4;
    color: #9EA2AF;
    font-weight: 500;
    border-radius: 40px;
    position: relative;
    box-shadow: 0px 0px 0px 0px rgb(31 107 255 / 20%);
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    z-index: 1;
}

.signup-tab-option a.active,
.signup-tab-option a:hover {
    background-color: #1F6BFF;
    box-shadow: 0px 0px 0px 5px rgb(31 107 255 / 20%);
    color: white;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
}

.signup-tab-option a::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ebeef4;
    width: 30px;
    height: 2px;
    right: -30px;
    z-index: -1;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
}

.signup-tab-option a:hover::after,
.signup-tab-option a.active::after {
    background-color: #1F6BFF;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
}

.signup-tab-option .form-tab:last-child a::after,
.signup-tab-option .col-md-3:last-child a::after {
    display: none;
}

.sainik-personal-info .form {
    margin-top: 40px;
}

.sainik-personal-info .form-field {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.sainik-personal-info .form-field label {
    flex-basis: 60%;
    margin: 0;
}

.checkbox-group {
    width: 100%;
    display: flex;
    padding: 12px 25px;
}

.checkbox-group div input {
    margin-right: 10px;
}

.login-form a img {
    width: 24px;
}

div.table {
    border: 1px solid #e0e3e7;
    border-radius: 10px;
    overflow: hidden;
}

table {
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 !important;
}

.login-form table {
    margin-top: 50px;
}

table th {
    background-color: #1F6BFF !important;
    color: #fff;
    font-weight: 500;
}

table tbody {
    background: white;
}

ol {
    padding-left: 20px;
    margin-top: 10px;
}

ol li {
    margin-bottom: 15px;
}

.form a.in-text {
    margin-left: 20px;
}

.add-new-member {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background-color: #0000007a;
    width: 100%;
    height: 100%;
    z-index: 9;
    display: none;
    align-items: center;
    justify-content: center;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
}

.add-new-member.active {
    display: flex;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
}

.close-add-member {
    background-color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    padding-bottom: 3px;
    padding-left: 2px;
    position: absolute;
    top: -10px;
    right: -10px;
    box-shadow: 0px 0px 15px 0px hsl(0deg 0% 20% / 10%);
    cursor: pointer;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
}

.add-new-member .login-form {
    position: relative;
}

td.btnDelete {
    cursor: pointer;
}

.otp-form .otp-fields {
    display: none;
}

.otp-form.otp-send .otp-fields {
    display: inline;
}

.footer-copyrights p {
    font-size: 14px;
    padding: 15px 20px;
    margin: 0 !important;
    color: white;
}

.sign-section .footer-copyrights p {
    color: #0E142E;
}

.success-right {
    width: 30%;
    margin: 40px auto 0;
    text-align: center;
    display: block;
}

/* Responsive */

@media screen and (max-width: 1399px) {
    section.login-section h1 {
        font-size: 54px;
    }
}

@media screen and (max-width: 991px) {
    .login-form {
        margin-top: 50px;
        margin-left: 0px;
    }

    .login-side-content p,
    section.login-section h1 {
        text-align: center;
    }
}