#captchaSolvedModal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}
#captchaSolvedModalContent {
    position: relative;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    max-width: 90%;
    width: 400px;
    gap : 10px;
}
#captchaSolvedModalContent p {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 15px;
}
#captchaSolvedModalContent img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid #eee;
    margin-bottom: 10px;
}
.popup-title {
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    text-align: left;
    flex: 1;
    word-break: break-word;
    max-width: calc(100% - 120px);
    margin: 0;
}
.popup-btn {
    display: inline-block;
    margin-top: 5px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
}
.my{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
#closeSolvedPopup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #555;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}
#closeSolvedPopup:hover {
    color: #000;
}

/* New Popup for the Captcha Iframe itself */
#captchaIframeModal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9998;
    backdrop-filter: blur(5px);
}
#captchaIframeModalContent {
    position: relative;
    background: #fff;
    padding: 10px auto 0;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    max-width: 90%;
    width: 390px;
}
#closeIframePopup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #555;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}
#closeIframePopup:hover {
    color: #000;
}
#captchaIframe {
    width: 350px;
    height: 450px;
    border: 1px solid #ddd;
    border-radius: 10px;
    display: block;
    margin: 20px auto 0;
}

.recaptcha-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 302px;
    height: 78px;
    background: #f9f9f9;
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    box-shadow: 0 0 3px rgba(0,0,0,0.1);
    padding: 0 10px;
    font-family: Arial, sans-serif;
    margin: 10px auto 20px auto;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.recaptcha-left {
    display: flex;
    align-items: center;
}
.recaptcha-checkbox-input {
    margin-right: 8px;
    transform: scale(1.8);
    cursor: pointer;
    pointer-events: none;
}
.recaptcha-text {
    font-size: 14px;
    color: #000;
    margin-left: 8px;
}
.recaptcha-right {
    text-align: center;
    font-size: 9px;
    color: #555;
}
.recaptcha-logo {
    width: 36px;
    height: 36px;
    background: url('https://adfortify.threecoding.com/img/3.png') no-repeat center;
    background-size: contain;
    margin-bottom: 2px;
    margin-right: 10px;
}
.recaptcha-right a {
    color: #555;
    text-decoration: none;
    margin: 0 1px;
}

/* New Custom CSS for Bootstrap equivalent classes */
.my-margin-bottom-3 {
    margin-bottom: 1rem; /* Equivalent to Bootstrap's mb-3 */
}

.my-text-center {
    text-align: center; /* Equivalent to Bootstrap's text-center */
}

.my-margin-bottom-2 {
    margin-bottom: 0.5rem; /* Equivalent to Bootstrap's mb-2 */
}

/* Added for margin to "Verify you are human" title */
.captcha-title {
    margin-top: 15px; /* Adjust this value as needed for more or less space */
    margin-bottom: 10px; /* You can also add some bottom margin if needed */
}