.test-recaptcha {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.recaptcha-container {

    margin-bottom: 20px;
    background: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 320px;
    height: 60px;
    /* height: 2	0px; */
    display: flex;
    align-items: center;
    border: 1px solid #d3d3d3;
    justify-content: space-between;
}

.recaptcha-right {

    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
}

.recaptcha-right label {

    font-size: 100%;
}

.recaptcha-checkbox {

    width: 24px;
    height: 24px;
    border: 2px solid #c1c1c1;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    transition: border-color 0.3s;
}

.recaptcha-checkbox input {

    width: 14px;
    height: 10px;
    /* position: absolute;
    opacity: 0; */
    width: 0;
    height: 0;
}


.checkmark {
    width: 14px;
    height: 10px;
    border-left: 3px solid white;
    border-bottom: 3px solid white;
    position: absolute;
    display: none;
    cursor: pointer;
}



.recaptcha-checkbox.checked {
    background: #4285f4;
    border-color: #4285f4;
}

.recaptcha-checkbox.checked .checkmark {
    display: block;
}

.recaptcha-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-right: 10px;
}

.recaptcha-logo {
    width: 45px;
    height: 40px;
	margin-top: 15px;
    margin-bottom: 5px;
}

.recaptcha-text {
    font-size: 80%;
    color: gray;
	margin-top: -20px;
}

.p_captcha{
	font-size: 80%;
}

.recaptcha-text a {
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 80%;
    color: gray;
}

#recaptchaCheck {
  pointer-events: auto; /* Re-enable pointer events */
}


.captcha-popup {
    display: none;
    background: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9999;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 300px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Web", sans-serif;

}

.popup-header {
    background: #5b5fc7;
    color: white;
    padding: 10px;
    /* font-weight: bold; */
    border-radius: 5px 5px 0 0;
}

#captchaPopup button {
    padding: 8px 12px;
    background: #5b5fc7;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 3px;
}

#captchaPopup button:hover {
    background: #6a6ed7;
}
