.custom-image-captcha.captcha-container{
    width: 100%;
    margin-top: 5px;
    margin-bottom: 12px;
    border: 3px solid #708dce;
    padding: 8px;
    border-radius: 12px;
}
.custom-image-captcha #captcha-text{
    color: #e91e60;
}
.custom-image-captcha .captcha-prompt {
    font-weight: bold;
    margin-bottom: 12px;
}
.custom-image-captcha .captcha-icons {
    display: flex;
    flex-wrap: wrap;
    /* Allow icons to wrap to multiple lines */
    justify-content: space-between;
    /* Distribute icons evenly */
}
.custom-image-captcha .captcha-icon {
    width: 40px;
    height: 40px;
    /* Set a fixed height for consistent appearance */
    margin: 3px;
    /* Add spacing between icons */
    cursor: pointer;
    /* Make icons clickable */
    border: 2px solid transparent;
    /* Set a transparent border initially */
    border-radius: 5px;
    /* Add rounded corners */
    transition: border-color 0.2s ease-in-out;
    /* Smooth transition on selection */
}
.custom-image-captcha .captcha-icon.selected {
    background: #007bff7a;
    /* Change border color to green on selection */
}
.admin-login-page .captcha-prompt {
    margin-left: 5px;
}
.captcha-icons img{
    background-color:#ffc107a6;
}