#wplr-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wplr-popup-content {
    background-color: #fff;
    padding: 0;
    width: 1200px; /* 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;
}
.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.1);
    background: linear-gradient(to right,rgba(0,0,0,0.9),rgba(0,0,0,0),rgba(0,0,0,0.9));
    border: 1px solid rgba(255, 255, 255, 0.37);
    z-index: 1;

    display: none;
}
.wplr-popup-columns {
    display: flex;
    position: relative;
    z-index: 10;
    min-height: 780px;
}
.wplr-popup-columns h2{
    font-size: 37px;
    display: block;
    margin-bottom: 24px;
    font-weight: 600;
    color: #19191e;
    text-align: center;
}
.wplr-popup-column {
    width: 50%;
    padding: 10px 105px;
    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-size: cover;
    background-repeat: no-repeat;
    padding-top: 23rem;
}

.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;
    padding-left: 85px;
    padding-right: 116px;
}
.wplr-form-login.register_showing{
    padding-left: 50px;
    padding-right: 50px;
}

#wplr-popup-notification, .wplr-notification {
    display: none;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    border-radius: 0;
}

.wplr-close {
    position: absolute;
    top: 20px;
    right: 30px;
    cursor: pointer;
    font-size: 30px;
    z-index: 50;
}

.wplr-input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    position: relative;
}

.wplr-input-group label {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 15px;
    display: block;
    margin-top: 0.7rem;
    margin-bottom: 0.2rem;
    color: #19191e;
    font-weight: 600;
}

.wplr-input-group input {
    /* padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px; */

    padding: 20px 18px;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #d3d3d3;
    border-radius: 4px;
    color: #333;
}
.wplr-input-group select{
    padding: 20px 18px;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #d3d3d3;
    border-radius: 4px;
    color: #333;
    font-family: inherit;
}
.wplr-input-group input::placeholder{
    color: #333;
}
.wplr-check {
    font-size: 20px;
    position: absolute;
    right: 10px;
    top: 17px;
    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: 0.7rem 4rem 0.8rem;
    font-size: 15px;
    border-radius: 5px;
    display: block;
    width: 100%;
    background: var(--theme_color);
    margin-top: 1rem;
    transition: all 0.3s;
    font-size: 22px;
    padding: 1.2rem;
    margin-top: 0;
    text-transform: capitalize;
    font-family: inherit;
    font-weight: 500;
    color: white;
    margin-top: 30px;
    margin-bottom: 0rem;
}
#wplr-popup-form-content>div p{
    font-size: 20px;
    color: #000;
    font-weight: 500;
    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: var(--theme_color);
    background-color: transparent;
    text-decoration: underline;
    font-size: 20px;
    font-weight: 500;
}

#wplr-popup-form-content>div p.forget_text button{
    font-size: 16px;
}

.wplr-popup-content button[type="submit"]:hover {
    filter: brightness(110%);
    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: 0.9rem;
    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-forgot-submit{
    margin-bottom: 1rem;
}
#wplr-popup-loader {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: 1rem;
    margin-left: -25px;
    width: 50px;
    --b: 8px;
    aspect-ratio: 1;
    border-radius: 45%;
    background: var(--theme_color);
    -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: var(--theme_color);
    color: #fff;
    border-color: transparent;
}

.wplr-notification.info {
    background-color: var(--theme_color);
    color: #fff;
    border-color: transparent;
}

.wplr-notification .icon {
    margin-right: 10px;
    vertical-align: middle;
    display: none;
}


.wplr-popup-content {
    background-size: cover;
    background-position: center;
    border-radius: 25px;
    overflow: hidden;
}

.logo_img{
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
}
.wplr-logo {
    display: block;
    width: 315px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}



.wplr-social-login a{
    width: 100%;
    /* padding: 25px; */
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: block;
    text-align: center;
    margin-bottom: 17px;
    transition: all 0.3s;
    color: #000;
    display: flex;
    align-items: center;
    height: 58px;
    font-weight: 600;
    font-size: 16px;
    background-color: #fff;
    border-radius: 20rem;
  }
  .wplr-social-login a:hover{
    border: 1px solid var(--theme_color);
  }
  .wplr-social-login a img{
    width: 24px;
    display: block;
    margin-right: 15px;
    height: auto;
    margin-left: 62px;
  }
  
  .wplr-social-login a.facebook img{
    width: 40px; 
    margin-left: 18%; 
  }
  .wplr-social-login strong{
    font-size: 29px;
    color: white;
  }
  .wplr-social-login p{
    font-size: 22px;
    margin-top: 14px;
    color: white;
  }

  #wplr-register{
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
  }
  .wplr-input-group{
    width: 100%;
  }
  .wplr-input-group.col2{
    width: 48%;
  }
  .eye{
    width: 20px;
    height: 20px;
    display: inline-block;
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    background: url('../img/eye.svg') no-repeat center/contain;
    cursor: pointer;
  }

  @media screen and (max-width: 786px) {
    .wplr-popup-columns{
        flex-flow: wrap;
        max-width: 100%;
    }
    .wplr-popup-columns .wplr-popup-column{
        width: 100%;
        padding: 2rem 1.2rem;
    }
    
    .wplr-logo{
        display: none;
    }
    .wplr-social-login a{
        height: 45px;
        font-size: 14px;
    }
    .wplr-social-login a img{
      width: 23px;
    }
    .wplr-social-login a.facebook img{
        width: 35px;
    }
    .wplr-social-login{
        padding-bottom: 0 !important;
    }
    .wplr-popup-columns h2{
        font-size: 25px;
        margin-bottom: 0.5rem;
    }
    #wplr-popup-form-content{
        width: 100%;
    }
    #wplr-popup-form-content>div p{
        font-size: 13px;
    }
    .wplr-input-group input{
        padding: 12px 16px;
        font-size: 15px;
    }
    .wplr-popup-content button[type="submit"]{
        font-size: 15px;
        padding: 0.8rem;
        margin-top: 2rem;
    }
    #wplr-popup{
        align-items: flex-end;
    }
    .wplr-popup-content{
        border-radius: 0;
        max-width: 100%;
    }
    #wplr-popup-form-content>div p button{
        font-size: 14px;
    }
    .wplr-popup-columns{
        min-height: unset;
    }
    .wplr-social-login{
        display: none;
    }
    .wplr-form-login{
        min-height: 250px;
    }


  }
