@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.png");
    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 #FFF;
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(2px);
    padding: 50px;
}

.pannel-heading {
    letter-spacing: normal;
}

.fotgot-text {
    max-width: 310px;
}

.reset-text p {
    max-width: 400px;
}

@media (max-width: 600px) {
    .forgot-pass-content {
        padding: 30px 10px;
    }

    .pannel-group input[type='text'],
    .pannel-group input[type='password'] {
        padding: 10px;
    }

    .pannel-heading {
        font-size: 20px;
    }

    .log-in-btn {
        padding: 10px 0;
        font-size: 12px;
    }
}

/*model popup*/
.forgetSuccess {
    padding: 22px 0;
    text-align: center;
}

    .forgetSuccess h4 span {
        color: #4CC97D;
    }

.forgetSuccesscolor {
    background-color: lightblue;
}

.btn-mrgn {
    margin-left: 180px;
}
/*----------save butoon color------------*/

.save-btn {
    padding: 8px 30px;
    background-color: #136c9b;
    border: none;
    color: #fff;
}

    .save-btn:hover {
        color: #fff;
    }


/*----------Loader------------*/

.loader {
    background-color: #000;
    opacity: 0.5;
    display: none;
    z-index: 9999;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.loading {
    height: 0;
    width: 0;
    padding: 30px;
    border: 8px solid #15243E;
    border-right-color: #4cc97d;
    border-radius: 50%;
    -webkit-animation: rotate 1s infinite linear;
    position: absolute;
    left: 45%;
    top: 50%;
}

@-webkit-keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
    }
}
