﻿#captcha-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

#captcha-modal {
    display: none;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: fixed;
    top: 50%;
    left: 50%;
    padding: 20px;
    margin-top: -130px;
    margin-left: -170px;
    background: #fff;
    color: #000;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    max-width: 90vw;
    max-height: 90vh;
}

    #captcha-modal.show {
        display: block;
        opacity: 1;
        transform: scale(1);
    }

#captcha-overlay.show {
    opacity: 1;
}

.captcha-banner {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    transition: opacity 0.3s ease;
}

    .captcha-banner.success {
        background-color: rgba(0, 128, 0, 0.8);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .captcha-banner.error {
        background-color: rgba(200, 0, 0, 0.8);
    }

#captcha-box {
    cursor: pointer;
    border: 1px solid #ccc;
    padding: 10px 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width:300px;
    min-width:200px;
    border-radius: 5px;
    background: #f9f9f9;
    box-shadow: 0 0 3px rgba(0,0,0,0.1);
}

#check-icon {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}
/*#captcha-message {
    display: none;
    position: absolute;
    bottom: 0px !important;
    left: 0px;
    width: 300px;
    z-index: 10;
}*/
