
.wpt-login-page {
    padding: 50px 10px;
    background: #f7f7fb;
  }
  #switchToLogin {
    padding: 0;
    background: #0000;
    border: 0;
    color: #061bc8;
  cursor:pointer;
  }
  #edd_login_form legend, #edd_register_form legend{
    display: none;
  }


.form-container {
    perspective: 1000px;
}
.form-toggle {
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
    position: relative;
}
.form-toggle.login {
    transform: rotateY(0deg);
}
.form-toggle.register {
    transform: rotateY(180deg);
}
.form-front, .form-back {
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}
.form-back {
    transform: rotateY(180deg);
}

/* manage stacking so front is above by default */
.form-front { z-index: 2; }
.form-back { z-index: 1; }

/* When register state is active swap stacking to show back face after rotation */
.form-toggle.register .form-front { z-index: 1; }
.form-toggle.register .form-back { z-index: 2; }

/* Ensure inputs inside hidden panel are not focusable */
.form-front[aria-hidden="true"], .form-back[aria-hidden="true"] { pointer-events: none; }
.social-btn {
    transition: all 0.3s ease;
}
.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.input-field:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}
#edd_register_form fieldset > p:nth-child(3),
#edd_register_form fieldset > p:nth-child(4) {
        width: calc(50% - 5px);
    float: left;
}
#edd_register_form fieldset > p:nth-child(3) {
    margin-right: 5px;
}
#edd_register_form fieldset > p:nth-child(4) {
    margin-left: 5px;
}
#edd_register_form fieldset > p:nth-child(4)::after {
    content: "";
    clear: both;
    display: table;
}
#edd_register_form fieldset > p:nth-child(5) {
    width: 100%;
    float: left;
    clear: both;
}
.wrap-btn-toggle {
    padding: 8px 10px;
    background: #f0f0f0;
    border-radius: 5px;
    margin-bottom: 20px;
}
.toggle-btn{
    cursor: pointer;
    background-color: #0000;
    border: 0;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}
.toggle-btn.active {
    background-color: #061bc8;
    color: white;
}

.toggle-btn svg{
    width: 19px;
    height: 19px;
}

#edd_login_form fieldset > p, #edd_register_form fieldset > p {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
}
#edd_login_form label, #edd_register_form label {
    color: #374151;
    margin-bottom: 2px;
}
.edd-lost-password a {
    color: #374151;
    font-size: 14px;
    font-weight: 400;
}
.edd-login-remember label {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-top: 5px;
    font-weight: 400;
    line-height: 20px;
}
p.edd-login-remember input#rememberme {
    width: 15px;
    height: 15px;
    margin-right: 5px;
}
#edd_error_edd_invalid_login a {
    color: #061bc8;
}
#edd_login_form .edd-input, #edd_register_form .edd-input {
    padding-top: 0.50rem;
    padding-bottom: 0.50rem;
    border: solid 1px #d1d5db;
    border-radius: 4px;
    padding-left: 8px;
}
.box-left-login {
    /* min-height: 680px; */
    background-image: linear-gradient(201deg, #0112a6 0%, #001092 100%);
}

.wrap-form-login-regis {
    max-width: 1024px;
}
.wrap-form-login-regis input.edd-submit {
    margin-top: 11px !important;
    font-size: 16px;
}

.nsl-container.nsl-container-block .nsl-container-buttons {
    width: 100%;
}
#edd_login_form fieldset, #edd_register_form fieldset {
    padding: 1px;
}
.bg-bluex-500 {
    background-color: oklch(0.45 0.28 265.3);
}

.text-hello{
    margin-bottom: 10px;
    font-size: 36px;
}

/*for Mobile*/
@media (max-width: 767px) {
    .wpt-login-page {
        padding: 15px 3px;
    }
    .wrap-form-right {
        padding: 35px 20px;
    }
    .box-left-login {
        display: none;
    }
}


/*for tabletV*/
@media (min-width: 768px) and (max-width: 991px) {
        .box-left-login {
        display: none;
    }

     .wrap-form-right {
        padding: calc(3px * 8);
        padding-top: 40px;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    .toggle-btn {
        padding: 13px 10px;
    }
    .box-left-login {
        min-height: 620px;
        padding: 25px;
    }
}