@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


* {
    box-sizing: border-box;
    margin: 0;
    padding: o;
}

body {
    font-family: "Poppins", sans-serif;
}

:root {
    --white-color: #fff;
    --black-color: #000;
    --primary-color: #6b98c1;
    --primary-text-color: #43729D;
    --label-color: #2D2D2D;
    --btn-color: #005581;
}

p {
    margin: 0;
}

.main-content {
    background: url("../images/banner-meeeting.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.ndc-login {
    background: linear-gradient(0deg, rgba(0, 85, 129, 0.68) 0%, rgba(0, 85, 129, 0.68) 100%);
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    display: flex;
}

.ndc-login-content {
    max-width: 600px;
    width: 100%;
    margin: auto;
    border-radius: 24px;
    border: 0.8px solid #FFF;
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(2px);
    padding: 50px;
}

    .ndc-login-content .ndc-logo img {
        width: 200px;
        border-radius: 5px;
    }

.pannel-heading {
    color: var(--black-color);
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 2.8px;
}

.pannel-group input[type='text'],
.pannel-group input[type='password'] {
    border: none;
    box-shadow: none;
    width: 100%;
    color: var(--white-color);
    padding: 15px;
    border-radius: 10px;
    color: var(--label-color);
}

.log-in-btn {
    border-radius: 7.012px;
    background: var(--btn-color);
    color: var(--white-color);
    width: 100%;
    padding: 15px 0;
}

    .log-in-btn:hover {
        color: var(--white-color);
    }

.remember-password input {
    margin: 0;
    background: none;
    border-radius: 2px;
    border: 1px solid var(--black-color);
}

    .remember-password input[type='checkbox']:focus {
        box-shadow: none;
    }

.remember-password span {
    color: var(--black-color);
    font-weight: 500;
}

.forgot-password {
    color: var(--black-color);
    font-weight: 500;
    text-decoration: none;
}

.dont-hv-acc {
    color: var(--black-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.8px;
}

    .dont-hv-acc a {
        color: var(--btn-color);
    }

.login-with-section {
    display: flex;
    justify-content: center;
    gap: 20px;
}

    .login-with-section .social-icon {
        filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.25));
        border-radius: 50%;
        background: var(--white-color);
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

/* .lock-input {
    background-image: url('../images/lock-icon.svg');
    background-size: 18px 18px;
    background-position: 10px 10px;
    background-repeat: no-repeat;
    padding-left: 30px;

} */

.lock-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 18px;
    color: #666;
}

.password-grp {
    position: relative;
}

.password-seen {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate(-5px, -10px);
    color: var(--label-color);
}


@media (max-width: 768px) {
    .ndc-login {
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .ndc-login-content {
        padding: 30px 10px;
    }

        .ndc-login-content .ndc-logo img {
            width: 160px;
        }

    .pannel-group input[type='text'],
    .pannel-group input[type='password'] {
        padding: 10px;
    }

    .pannel-heading {
        font-size: 20px;
    }

    .log-in-btn {
        padding: 10px 0;
    }

    .password-reset {
        font-size: 12px;
    }
}

.fa-eye-slash,
.fa-envelope,
.fa-circle-user,
.fa-eye {
    border: none;
    outline: none;
    box-shadow: none;
    color: var(--primary-text-color);
}

.text-muted{
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(-5px, -45%)
}
/*08/10/2024*/
.password-grp-inner .password-seen {
    top: 30px;
}