.secure-captcha {
    width: 60%;
    background-color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
}


@media (min-width: 768px) and (max-width: 992px) {
    .secure-captcha__input {
        position: relative;
        aspect-ratio: 16 / 4;
        margin-left: -14px !important; 
        left: 35px;
    }

    .secure-captcha__refresh-icon {
        position: relative !important;
        top: 0px !important;
        height: 0px;
        width: 0px;
        left: 15px !important;
        transform: translateY(-50%);
        font-size: 18px;
        color: #209e8c;
        cursor: pointer;
        user-select: none;
        user-select: none;
    }



}


.secure-captcha__canvas {
    display: block;
    border: 1px solid #ccc;
    border-radius: 6px;
    /*width: 100%;*/
    max-width: 285px;
    height: auto;
    aspect-ratio: 19 / 4; /* Keeps proportions similar to 285x60 */
    background-color: #f9f9f9;
}

/* Optional: Adjust padding or layout on smaller screens */
@media (max-width: 576px) {
    .secure-captcha__canvas {
        /*max-width: 100%;*/
        width: 150%;
        aspect-ratio: 16 / 4;
    }
}






.secure-captcha__input {
    border: 1px solid #ccc;
    border-radius: 0px 6px 6px 0px;
    border-left: none;
    margin-left: -6px;
    width: 60%;
    font-size: 14px;
    padding: 9px;
}

.secure-captcha__refresh-icon {
    position: relative;
    top: 7px;
    height: 0px;
    width: 0px;
    right: 17px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #209e8c;
    cursor: pointer;
    user-select: none;
    user-select: none;
}

    .secure-captcha__refresh-icon::before {
        content: "\21bb";
        / Unicode for ↻ / display: inline-block;
        transition: transform 0.3s ease;
    }

    .secure-captcha__refresh-icon:hover::before {
        transform: rotate(180deg);
        color: #0056b3;
    }

.secure-captcha__button {
    width: 100%;
    padding: 8px;
    background-color: #007BFF;
    color: #fff;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-bottom: 10px;
}

    .secure-captcha__button:hover {
        background-color: #0056b3;
    }

.secure-captcha__result {
    font-weight: 600;
    font-size: 14px;
    min-height: 20px;
}

.secure-captcha__result--success {
    color: green;
}

.secure-captcha__result--error {
    color: red;
}
