.signup-block {
    padding: 60px 0;
}
.signup-fix-block {
    width: 100%;
    max-width: 548px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #D9DADC;
}

.signup-fix-block.forgot-password-block .auth-title.text-center h1 {
    padding-bottom: 16px;
}

.name-box {
    gap: 16px;
}

.already-account {
    margin-top: 16px;
}
.already-account p {
    font-size: 14px;
    line-height: 24px;
    color: #626F70;
}
.or {
    width: 100%;
    padding: 30px 0;
    position: relative;
    color: #626F70;
    font-size: 14px;
    line-height: 24px;
}

.or:after,
.or:before {
    position: absolute;
    content: "";
    width: 45%;
    height: 1px;
    background: #D9DADC;
    top: 43px;
}
.or:after {
    right: 0;
    left: auto;
}

.or:before {
    right: auto;
    left: 0;
}

.social-authenticate {
    padding: 9px 13px;
    border-radius: 10px;
    border: 1px solid #D3D3D3;
    margin-bottom: 16px;
}

.social-authenticate:last-child {
    margin-bottom: 0;
}

.social-authenticate a{
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0;
    padding-left: 12px;
    color: #161717;
}

/* Registration OTP */
.signup-fix-block.otp-fix-block {
    max-width: 422px;
}
.auth-title.otp-title h1 {
    padding-bottom: 16px;
}
.digit-group {
    margin: 0 0 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.digit-group input {
    width: 54px;
    height: 54px;
    text-align: center;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
}

.pass-wrap {
    display: flex;
    gap: 16px;
}

.form-block {
    text-align: center;
    max-width: 264px;
    margin: 0 auto;
    width: 100%;
}

.expires-otp-text,
.expire-otp {
    font-size: 14px;
    line-height: 24px;
    color: #C93737;
    margin-bottom: 30px;
    margin-top: 16px;
}

.expires-otp-text {
    color: #626F70;
}

.auth-title p {
    color: #626F70;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
    padding-bottom: 30px;
}

.auth-title p a {
    color: #161717;
}

/* Login Page */
.forget-password-link {
    text-align: right;
    margin-top: 8px;
}

.forget-password-link a {
    font-size: 12px;
    line-height: 18px;
    text-transform: capitalize;
    letter-spacing: 0.08em;
    text-decoration: underline;
}

/* Forgot-password */
.back-to-login {
    font-size: 16px;
    line-height: 20px;
    text-decoration: underline;
}

/* Reset Password */
.reset-password-block {
    font-size: 16px;
    line-height: 26px;
    max-width: 420px;
    margin: 0 auto;
}

@media only screen and (max-width: 575px) {
    .name-box {
        gap: 0;
        flex-wrap: wrap;
    }

    .floating_group {
        width: 100%;
    }

    .signup-fix-block {
        padding: 12px;
    }

    .or:after, .or:before {
        width: 40%;
        top: 30px;
    }

    .or {
        padding: 16px 0;
    }

    .social-authenticate {
        padding: 5px 13px;
    }
}

@media only screen and (max-width: 480px) {
    
    .digit-group input {
        width: 30px;
        height: 30px;
        font-size: 14px;
        line-height: 18px;
    }

    .auth-title p {
        font-size: 15px;
        line-height: 20px;
    }

    .signup-block {
        padding: 40px 0;
    }

    .social-authenticate a {
        font-size: 12px;
    }

    .or {
        font-size: 12px;
    }

    .forget-password-link {
        margin-top: 0;
    }
}
.loader {
    position: fixed;
    visibility: hidden;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0.8;
    background: url("../../../assets/dashboard/images/Loader.gif") 50% 50% no-repeat rgb(249,249,249);
    background-size: 100px;
}

