


/* Registration Form */
.wdt-registration-form {
    padding: 60px;
    background-color: rgba(var(--wdtBodyBGColorRgb), 1);
    width: 100%;
    max-width: 600px;
    border-radius: var(--wdtRadius_Zero);
    margin: 0 auto;
    margin-bottom: 150px;
    border: 0 solid var(--wdtBorderColor);
    background-color: var(--wdtTertiaryColor);

}

.wdt-registration-form form {
    margin-top: clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem); /*40px - 30px*/
}

.wdt-registration-form .furniforma-custom-auth-sc-border-title h2 {
    text-align: center;
    margin-top: 0;
}

.wdt-registration-form .furniforma-custom-auth-register-alert {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

.wdt-registration-form p {
    text-align: center;
    font-weight: var(--wdtFontWeight_Base);
}

.wdt-registration-form > p:not(:last-child) {
    margin-bottom: 20px;
}

.wdt-registration-form form > p:empty {
    display: none;
}

.wdt-registration-form form > p.submit {
    margin-bottom: 30px;
}

.wdt-registration-form form > p.submit input[type="submit"] {
    margin-top: 0;
}

.wdt-registration-form p strong {
    font-weight: var(--wdtFontWeight_Base);
}

.wdt-registration-form form p {
    text-align: left;
    color: var(--wdtBodyTxtColor);
}

.wdt-registration-form form p:last-child {
    text-align: center;
    margin-bottom: 0;
}

.wdt-registration-form form p a.furniforma-pro-login-link {
    color: var(--wdtLinkColor);
    text-decoration: none !important;
    position: relative;
    padding: 0;
}

.wdt-registration-form form p a.furniforma-pro-login-link:hover {
    color: var(--wdtLinkHoverColor);
}

.wdt-registration-form form p a.furniforma-pro-login-link:after,
.wdt-registration-form form p a.furniforma-pro-login-link:before {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    will-change: transform;
}

.wdt-registration-form form p a.furniforma-pro-login-link:after {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    transform-origin: left;
    -webkit-transform-origin: left;
    transition: transform 0.3s ease-in-out 0.2s;
    -webkit-transition: transform 0.3s ease-in-out 0.2s;
}

.wdt-registration-form form p a.furniforma-pro-login-link:hover:after {
    transform: scaleX(0);
    transform-origin: right;
    -webkit-transform-origin: right;
    transition: transform 0.3s ease-in-out 0s;
    -webkit-transition: transform 0.3s ease-in-out 0s;
}

.wdt-registration-form form p a.furniforma-pro-login-link:before {
    transform: scaleX(0);
    transform-origin: right;
    -webkit-transform-origin: right;
    transition: transform 0.3s ease-in-out 0s;
    -webkit-transition: transform 0.3s ease-in-out 0s;
}

.wdt-registration-form form p a.furniforma-pro-login-link:hover:before {
    transform-origin: left;
    -webkit-transform-origin: left;
    transform: scaleX(1);
    transition: transform 0.3s ease-in-out 0.2s;
    -webkit-transition: transform 0.3s ease-in-out 0.2s;
}

.wdt-registration-form form#loginform {
    display: block;
}

.furniforma-pro-login-description {
    text-align: center;
}

.wdt-registration-form input[type="submit"] {
    width: 100%;
    padding: var(--wdtPadding_Btn);
    margin-top: 0;
}

.wdt-registration-form input[type="submit"]:hover {
    background-color: var(--wdtLinkColor);
    color: var(--wdtAccentTxtColor);
}

.furniforma-pro-login-form-holder #loginform > label:empty {
    display: none;
}

.furniforma-pro-login-form-holder #loginform p {
    margin: 0;
}

.furniforma-pro-login-form-holder #loginform {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-content: space-between;
    grid-gap: 20px;
}

.furniforma-pro-login-form-holder #loginform label[for="rememberme"] {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.furniforma-pro-login-form-holder #loginform label[for="rememberme"] input[type="checkbox"] {
    top: 3px;
}

.furniforma-pro-login-form-holder #loginform button[type="submit"] {
    margin-top: 0;
}

/* Login form */

.furniforma-pro-login-form-container {
    display: block;
    height: 100% !important;
    margin: 0;
    padding: 0;
    pointer-events: none;
    width: 100%;
    z-index: 10000;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}

.furniforma-pro-login-form-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9999;
    background: rgba(var(--wdtBodyBGColorRgb), 1);
}

.login-form-custom-logo {
    text-align: center;
    margin: 10px 0;
    margin-bottom: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
    /*----min-20px and max-40px-----*/
}

.login-form-custom-logo img {
    max-width: 170px;
}

.furniforma-pro-login-form-holder>*:not(:last-child),
.furniforma-pro-login-form-container .furniforma-pro-login-form>*:not(:last-child) {
    margin-bottom: 30px;
}

.furniforma-pro-login-form-container .furniforma-pro-login-form {
    display: grid;
    padding: 0;
    pointer-events: auto;
    position: absolute;
    left: 0;
    right: 0;
    background-color: rgba(var(--wdtBodyBGColorRgb), 1);
    width: 100%;
    margin: auto;
    height: 100%;
    place-content: center;
    text-align: center;
}

.furniforma-pro-login-form-container .furniforma-pro-login-form .furniforma-pro-login-form-wrapper {
    padding: 70px;
    border-radius: var(--wdtRadius_Zero);
    border: 0 solid;
    background-color: var(--wdtTertiaryColor);
    max-width: 820px;
    height: fit-content;
    overflow-y: auto;
    max-height: calc(100vh - 2*1.5em);
}

.furniforma-pro-login-form-container .furniforma-pro-login-form .furniforma-pro-login-form-wrapper .tpl-create-account {
    margin: 30px 0 0;
}

.furniforma-pro-login-form-container .furniforma-pro-login-form .furniforma-pro-login-form-wrapper .tpl-create-account a {
    color: var(--wdtLinkColor);
    text-decoration: none;
    position: relative;
}

.furniforma-pro-login-form-container .furniforma-pro-login-form .furniforma-pro-login-form-wrapper .tpl-create-account a:hover {
    color: var(--wdtLinkHoverColor);
}

.furniforma-pro-login-form-container .furniforma-pro-login-form .furniforma-pro-login-form-wrapper .tpl-create-account a:after,
.furniforma-pro-login-form-container .furniforma-pro-login-form .furniforma-pro-login-form-wrapper .tpl-create-account a:before {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    will-change: transform;
}

.furniforma-pro-login-form-container .furniforma-pro-login-form .furniforma-pro-login-form-wrapper .tpl-create-account a:after {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    transform-origin: left;
    -webkit-transform-origin: left;
    transition: transform 0.3s ease-in-out 0.2s;
    -webkit-transition: transform 0.3s ease-in-out 0.2s;
}

.furniforma-pro-login-form-container .furniforma-pro-login-form .furniforma-pro-login-form-wrapper .tpl-create-account a:hover:after {
    transform: scaleX(0);
    transform-origin: right;
    -webkit-transform-origin: right;
    transition: transform 0.3s ease-in-out 0s;
    -webkit-transition: transform 0.3s ease-in-out 0s;
}

.furniforma-pro-login-form-container .furniforma-pro-login-form .furniforma-pro-login-form-wrapper .tpl-create-account a:before {
    transform: scaleX(0);
    transform-origin: right;
    -webkit-transform-origin: right;
    transition: transform 0.3s ease-in-out 0s;
    -webkit-transition: transform 0.3s ease-in-out 0s;
}

.furniforma-pro-login-form-container .furniforma-pro-login-form .furniforma-pro-login-form-wrapper .tpl-create-account a:hover:before {
    transform-origin: left;
    -webkit-transform-origin: left;
    transform: scaleX(1);
    transition: transform 0.3s ease-in-out 0.2s;
    -webkit-transition: transform 0.3s ease-in-out 0.2s;
}

.furniforma-pro-login-form-container .furniforma-pro-login-form .furniforma-pro-title.furniforma-pro-login-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem); /*----min-30px and max-40px-----*/
}


#loginform .login-username,
#loginform .login-password {
    width: 100%;
}

#loginform .login-remember {
    text-align: left;
}

#loginform p.login-remember input[type="checkbox"] {
    opacity: 1;
    -webkit-appearance: none;
    appearance: none;
    width: 1em;
    height: 1em;
    border: 1px solid var(--wdtBorderColor);
    transform: translateY(-0.075em);
    display: inline-grid;
    place-content: center;
    background: rgba(var(--wdtTertiaryColorRgb), .0);
    border-radius: 2px;
    padding: 0 0;
}

#loginform p.login-remember input[type="checkbox"]:after {
    content: "";
    width: 0.65em;
    height: 0.65em;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--wdtPrimaryColor);
}

#loginform p.login-remember input[type="checkbox"]:checked:after {
    transform: scale(1);
}

#loginform input[type="text"]:focus,
#loginform input[type="password"]:focus {
    border-color: var(--wdtPrimaryColor);
}

#loginform .login-submit input[type="submit"] {
    width: 100%;
    background-color: var(--wdtPrimaryColor);
    padding-top: 14px;
    padding-bottom: 14px;
}

#loginform .login-submit input[type="submit"]:hover {
    background-color: var(--wdtSecondaryColor);
    color: var(--wdtAccentTxtColor);
}

.furniforma-pro-social-logins-divider {
    text-align: center;
    margin: 30px 0;
    color: var(--wdtBodyTxtColor);
    position: relative;
    display: flex;
    align-items: center;
}

.furniforma-pro-social-logins-container .furniforma-pro-social-logins {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2,1fr);
}

.furniforma-pro-social-logins-divider::after,
.furniforma-pro-social-logins-divider:before {
    content: "";
    position: relative;
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--wdtBorderColor);
}

.furniforma-pro-social-logins-divider::after {
    margin-left: 10px;
}

.furniforma-pro-social-logins-divider:before {
    margin-right: 10px;
}

.furniforma-pro-title.furniforma-pro-login-title h2 {
    text-align: center;
    margin-top: 0;
}

.furniforma-pro-login-form-container .furniforma-pro-login-form .furniforma-pro-login-form-holder p.tpl-forget-pwd {
    margin-bottom: 0px;
    text-align: left;
}

.furniforma-pro-login-form-container .furniforma-pro-login-form .furniforma-pro-login-form-holder p.tpl-forget-pwd a {
    color: var(--wdtLinkColor);
    text-decoration: none;
    position: relative;
    transition: var(--wdtBaseTransition);
    -webkit-transition: var(--wdtBaseTransition);
}

.furniforma-pro-login-form-container .furniforma-pro-login-form .furniforma-pro-login-form-holder p.tpl-forget-pwd a:hover {
    color: var(--wdtLinkHoverColor);
}

.furniforma-pro-login-form-container .furniforma-pro-login-form .furniforma-pro-login-form-holder p.tpl-forget-pwd a:after,
.furniforma-pro-login-form-container .furniforma-pro-login-form .furniforma-pro-login-form-holder p.tpl-forget-pwd a:before {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    will-change: transform;
}

.furniforma-pro-login-form-container .furniforma-pro-login-form .furniforma-pro-login-form-holder p.tpl-forget-pwd a:after {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    transform-origin: left;
    -webkit-transform-origin: left;
    transition: transform 0.3s ease-in-out 0.2s;
    -webkit-transition: transform 0.3s ease-in-out 0.2s;
}

.furniforma-pro-login-form-container .furniforma-pro-login-form .furniforma-pro-login-form-holder p.tpl-forget-pwd a:hover:after {
    transform: scaleX(0);
    transform-origin: right;
    -webkit-transform-origin: right;
    transition: transform 0.3s ease-in-out 0s;
    -webkit-transition: transform 0.3s ease-in-out 0s;
}

.furniforma-pro-login-form-container .furniforma-pro-login-form .furniforma-pro-login-form-holder p.tpl-forget-pwd a:before {
    transform: scaleX(0);
    transform-origin: right;
    -webkit-transform-origin: right;
    transition: transform 0.3s ease-in-out 0s;
    -webkit-transition: transform 0.3s ease-in-out 0s;
}

.furniforma-pro-login-form-container .furniforma-pro-login-form .furniforma-pro-login-form-holder p.tpl-forget-pwd a:hover:before {
    transform-origin: left;
    -webkit-transform-origin: left;
    transform: scaleX(1);
    transition: transform 0.3s ease-in-out 0.2s;
    -webkit-transition: transform 0.3s ease-in-out 0.2s;
}

a.furniforma-pro-social-facebook-connect,
a.furniforma-pro-social-google-connect {
    width: 100%;
    padding: var(--wdtPadding_Btn);
    display: inline-block;
    text-align: center;
    color: var(--wdtLinkColor);
    border-radius: var(--wdtRadius_Zero);
    -webkit-border-radius: var(--wdtRadius_Zero);
    box-shadow: unset;
    border: 1px solid var(--wdtLinkColor);
    margin: 0;
    font-size: var(--wdtFontSize_Ext);
    font-weight: var(--wdtFontWeight_Ext);
    font-family: var(--wdtFontTypo_Alt);
    letter-spacing: var(--wdtLetterSpacing_1X);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

a.furniforma-pro-social-facebook-connect:hover,
a.furniforma-pro-social-google-connect:hover {
    background-color: var(--wdtLinkColor);
    color: rgba(var(--wdtAccentTxtColorRgb), 1);
    border-color: var(--wdtLinkColor);
}

a.furniforma-pro-social-facebook-connect i,
a.furniforma-pro-social-google-connect i {
    margin-right: 10px;
}

a.furniforma-pro-social-google-connect i {
    position: relative;
    top: -2px;
}

a.furniforma-pro-social-google-connect i svg g path.google-color-1 {
    fill: rgb(72, 136, 244);
}
a.furniforma-pro-social-google-connect i svg g path.google-color-2 {
    fill: rgb(60, 169, 90);
}

a.furniforma-pro-social-google-connect i svg g path.google-color-3 {
    fill: rgb(249, 191, 21);
}

a.furniforma-pro-social-google-connect i svg g path.google-color-4 {
    fill: rgb(234, 78, 66);
}

a.furniforma-pro-social-facebook-connect i {
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 16px;
    background-color: rgb(24, 91, 176);
    color: var(--wdtAccentTxtColor);
    border-radius: var(--wdtLetterSpacing_3X);
    -webkit-border-radius: var(--wdtLetterSpacing_3X);
}

.furniforma-pro-login-form-container {
    max-width: 1640px;
    margin: auto;
}

@media only screen and (max-width:1540px) {
    /* .furniforma-pro-title.furniforma-pro-login-title h2 {
        font-size: var(--wdtFontSize_H3);
    } */

    .furniforma-pro-login-form #loginform {
        margin-top: 0;
    }

    /* .furniforma-pro-social-logins-divider {
        margin-top: 20px;
        margin-bottom: 30px;
    } */

    #loginform {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-content: space-between;
        grid-gap: 20px;
    }

    #loginform .login-submit {
        margin-bottom: 0;
        grid-area: 3/1;
    }
}

/* @media screen and (min-width: 768px) and (max-width: 1540px) {
    .furniforma-pro-login-form-holder #loginform {
        grid-template-columns: repeat(2, 1fr);
    }
} */

@media screen and (min-width:1281px) and (max-width: 1540px) {
    .furniforma-pro-login-form-container {
        max-width: 1080px;
        margin: auto;
    }

    .furniforma-pro-login-form-holder>*:not(:last-child),
    .furniforma-pro-login-form-container .furniforma-pro-login-form>*:not(:last-child) {
        margin-bottom: 20px;
    }
}

@media screen and (min-width:1025px) and (max-width: 1280px) {
    .furniforma-pro-login-form-container {
        max-width: 900px;
        margin: auto;
    }
}

@media screen and (min-width:768px) and (max-width: 1024px) {
    .furniforma-pro-login-form-container {
        max-width: 710px;
        margin: auto;
    }
}

@media screen and (max-width: 767px) {

    #loginform .login-username,
    #loginform .login-password {
        margin-bottom: 20px;
    }

    .furniforma-pro-login-form-container {
        overflow: scroll;
    }

    .furniforma-pro-login-form-container .furniforma-pro-login-form .furniforma-pro-login-form-wrapper {
        padding: 30px;
        max-width: 600px;
        margin: 0 20px;
        width: calc(100% - 40px);
    }
/* 
    .furniforma-pro-title.furniforma-pro-login-title h2 {
        font-size: var(--wdtFontSize_H4);
    } */

    .wdt-registration-form {
        padding: 50px 30px;
    }

    .wdt-registration-form .furniforma-custom-auth-sc-border-title h2 {
        font-size: var(--wdtFontSize_H3);
    }
}

@media screen and (min-width:480px) and (max-width: 767px) {
    .furniforma-pro-login-form-container {
        margin: auto;
    }
}

@media screen and (max-width: 479px) {

    .furniforma-pro-social-logins-container .furniforma-pro-social-logins {
        grid-template-columns: 1fr;
    }

    .furniforma-pro-social-logins-divider {
        margin: 20px 0;
    }

    .furniforma-pro-login-form-container {
        max-width: 100%;
        margin: auto;
    }

    .wdt-registration-form {
        padding: 40px 20px;
    }
}



/* After Registration */
.mu_register {
    width: 100%;
    margin: 0 auto;
    max-width: 600px;
    padding: 50px;
    background: var(--wdtSecondaryColor);
    box-shadow: rgba(0, 0, 0, .8) 0 0 40px;
    border-radius: var(--wdtRadius_3X);
}

.mu_register h2 {
    font-size: var(--wdtFontSize_H4);
    text-align: center;
}

.mu_register form input {
    box-shadow: none;
    -webkit-box-shadow: none;
    border: 1px solid transparent;
}

.mu_register form input:focus {
    border-color: var(--wdtPrimaryColor);
}

.mu_register form .wp-signup-username-description,
.mu_register form .wp-signup-email-description {
    margin-bottom: 15px;
}

.mu_register p.submit {

    margin-top: 20px;
}

.mu_register form p.submit input[type="submit"] {
    font-size: var(--wdtFontSize_Base);
}

@media screen and (max-width: 479px) {
    .furniforma-pro-login-form-container .furniforma-pro-login-form .furniforma-pro-login-form-wrapper {
        padding: 40px 20px;
        margin: 0 20px;
        width: calc(100% - 40px);
    }

    .mu_register {
        padding: 30px;
    }
}


@media only screen and (min-width:1281px) and (max-width:1540px) {
    .wdt-registration-form {
        margin-bottom: 120px;
    }
}

@media only screen and (min-width:1025px) and (max-width:1280px) {
    .wdt-registration-form {
        margin-bottom: 100px;
    }
}

@media only screen and (min-width:768px) and (max-width:1024px) {
    .wdt-registration-form {
        margin-bottom: 80px;
    }
}

@media only screen and (min-width:480px) and (max-width:767px) {
    .wdt-registration-form {
        margin-bottom: 70px;
    }
}

@media only screen and (max-width: 479px) {
    .wdt-registration-form {
        margin-bottom: 60px;
    }
}