#wplr-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wplr-popup-content {
    background-color: #fff;
    padding: 0;
    width: 1100px; /* Increased width to accommodate two columns */

    max-width: 90%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    position: relative;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    background: rgb(28, 30, 35);
}
.wplr-popup-content:after{
    content: "";
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(33, 36, 43, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.37);
    z-index: 1;
}
.wplr-popup-columns {
    display: flex;
    position: relative;
    z-index: 10;
    min-height: 700px;
    /* align-items: center; */
}
.wplr-popup-columns h2{
    font-size: 33px;
    display: block;
    margin-bottom: 24px;
    font-weight: 600;
    color: #fff;
    /* font-family: 'Oswald', sans-serif; */
    text-transform: uppercase;
    text-align: center;
}
.wplr-popup-column {
    width: 50%;
    padding: 10px 75px;
    box-sizing: border-box;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.wplr-social-login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
}

.wplr-social-login button {
    margin-bottom: 15px;
    padding: 10px 20px;
    background-color: #4285F4; /* Default color for Google */
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    max-width: 250px;
    text-align: center;
}

#wplr-login-facebook {
    background-color: #3b5998; /* Facebook color */
}

.wplr-form-login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background-color: var(--theme_color);
}

#wplr-popup-notification, .wplr-notification {
    display: none;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    border-radius: 0;
}

.wplr-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}

.wplr-input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    position: relative;
}

.wplr-input-group label {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 17px;
    display: block;
    margin-top: 0.7rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 400;
}

.wplr-input-group input {
    /* padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px; */

    padding: 19px 21px;
    background: rgba(255, 255, 255, 0.08) !important;
    width: 100%;
    font-size: 16px;
    color: white !important;
    font-weight: 300;
    border-radius: 5px;
}
.wplr-input-group input::placeholder{
    color: white;
}
.wplr-check {
    font-size: 20px;
    position: absolute;
    right: 10px;
    top: 13px;
    vertical-align: middle;
    display: inline-block;
    text-indent: -9999px;
    width: 25px;
    height: 25px;
    /* background: url('../img/correct.svg') no-repeat center/contain; */
}
.wplr-check[data-flag='yes']{
    background: url('../img/correct.svg') no-repeat center/contain;
}
.wplr-check[data-flag='no']{
    background: url('../img/error.svg') no-repeat center/contain;
}
.wplr-popup-content button[type="submit"] {
    /* padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    position: relative; */

    padding: 2rem 1rem;
    font-size: 15px;
    color: #fff;
    border-radius: 5px;
    display: block;
    width: 100%;
    background: var(--subtheme_color);
    margin-top: 5rem;
    transition: all 0.3s;
    font-size: 18px;
    
    margin-top: 0;
    text-transform: uppercase;
    font-family: inherit;
    font-weight: 600;
    margin-top: 9rem;
    margin-bottom: 2rem;
}
#wplr-popup-form-content>div p{
    font-size: 16px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 40px;
    text-align: center;
}
#wplr-popup-form-content>div p.forget_text{
    text-align: right;
}
#wplr-popup-form-content>div p button{
    color: #fff;
    background-color: transparent;
    font-size: 16px;
    text-decoration: underline;
    font-weight: 400;
}

.wplr-popup-content button[type="submit"]:hover {
    /* background-color: #005885; */

    background-color: #000;
    color: #fff;
}
#wplr-popup-form-content p{
    color: white;
    text-align: center;

}

/* button {
    background: none;
    border: none;
    color: #0073aa;
    cursor: pointer;
    font-size: 14px;
} */

/* button:hover {
    text-decoration: underline;
} */

.wplr-tooltip {
    cursor: pointer;
    text-decoration: none;
    margin-left: 5px;
    position: relative;
    position: absolute;
    width: 25px;
    height: 25px;
    left: 100%;
    top: 17px;
    text-indent: -9999px;
    background: url('../img/question.svg') no-repeat center/contain;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.wplr-tooltip-text {
    display: none;
    background-color: #000;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 1rem;
    font-size: 1.4rem;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Position above the text */
    left: 50%;
    margin-left: -120px;
    width: 240px;
}

.wplr-tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%; /* At the bottom of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
}

.wplr-loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--theme_color);
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 2s linear infinite;
    display: inline-block;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


#wplr-popup-loader {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: 1rem;
    margin-left: -25px;
    width: 50px;
    --b: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #fff;
    -webkit-mask:
      repeating-conic-gradient(#0000 0deg,#000 1deg 70deg,#0000 71deg 90deg),
      radial-gradient(farthest-side,#0000 calc(100% - var(--b) - 1px),#000 calc(100% - var(--b)));
    -webkit-mask-composite: destination-in;
            mask-composite: intersect;
    animation: l5 1s infinite;
    
  }
  @keyframes l5 {to{transform: rotate(.5turn)}}



.wplr-notification {
    display: none;
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-size: 14px;
    line-height: 1.5;
}

.wplr-notification.success {
    background-color: rgba(162, 204, 162, 0.692);
    color: rgb(15, 94, 15);
    border-color: rgb(15, 94, 15);
}

.wplr-notification.error {
    background-color: #ffc802;
    color: #222;
    border-color: transparent;
}

.wplr-notification.info {
    background-color: #ffc802;
    color: #222;
    font-size: 15px;
    border-color: transparent;
}

.wplr-notification .icon {
    margin-right: 10px;
    vertical-align: middle;
    display: none;
}

.wplr-popup-content {
    background-size: cover;
    background-position: center;
}

.wplr-logo {
    display: block;
    max-width: 100%;
    /* width: 300px; */
    width: 33.6rem;
    height: auto;
    margin-bottom: 9.6rem;
}



.wplr-social-login a{
    width: 100%;
    /* padding: 25px; */
    border: 1px solid #dfdfdf;
    display: block;
    text-align: center;
    margin-bottom: 17px;
    transition: all 0.3s;
    color: #666;
    display: flex;
    align-items: center;
    height: 58px;
    font-weight: 500;
    font-size: 15px;
    color: rgb(84, 84, 84);
  }
  .wplr-social-login a:hover{
    border: 1px solid var(--theme_color);
  }
  .wplr-social-login a img{
    width: 33px;
    display: block;
    margin-right: 11px;
    height: auto;
    margin-left: 25%;
  }
  
  .wplr-social-login a.facebook img{
    width: 49px; 
    margin-left: 23%; 
  }

@media screen and (max-width: 768px) {
    .wplr-popup-columns {
        min-height: unset;
        padding: 1rem 0;
        flex-direction: column-reverse;
    }
    .wplr-popup-column {
        width: 100%;
        padding: 28px;
    }
    .wplr-logo {
        display: none;
    }
    .wplr-social-login a {
        width: 44px;
        height: 44px;
        overflow: hidden;
        text-indent: -999px;
        margin: 0;
    }
    .wplr-social-login a.facebook img {
        width: 22px;
    }
    .wplr-social-login {
        gap: 1rem;
        flex-direction: row;
    }
    .wplr-popup-columns h2 {
        font-size: 25px;
        line-height: 1.5;
    }
    .wplr-input-group input {
        font-size: 15px;
        padding: 14px 1rem;
    }
    .wplr-popup-content button[type="submit"] {
        margin: 2rem 0 0;
        font-size: 1rem;
    }
    #wplr-popup-form-content>div p {
        margin: 1rem 0;
    }
}