.captcha .captcha-container {
    text-align: center;
    background-color: #444;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 300px;
}

.captcha .captcha-display {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 15px;
}

.captcha canvas {
    background-color: #fff;
    text-decoration: line-through;
    font-size: 20px;
    letter-spacing: 2px;
}



.captcha button {
    padding: 10px 15px;
    background-color: #f1f1f1;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.captcha button:hover {
    background-color: #d6d5d5;
}

.captcha #captchaMessage {
    margin-top: 10px;
}

.captcha .captcha-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.captcha .captcha-actions button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    width: 30px;
    height: 30px;
    background-color: #555;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 18px;
}

.captcha .captcha-actions button:hover {
    background-color: #eaeaea;
    border: 1px solid #c7c7c7;
}

.captcha #captchaCanvas {
    border-radius: 5px;
}


.captcha #verifyCaptcha {
    width: 100%;
    padding: 15px;
    margin: 15px 0;
    background-color: #2fa3e9;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.captcha #verifyCaptcha:hover {
    background-color: #2491d4;
}

.captcha-flex {
    display: block;
    flex-direction: column;
}
#captchaCanvas {
    margin-bottom: 1rem;
}

@media (min-width: 480px) {
    .captcha-flex {
        display: flex;
        flex-direction: row;
    }
    #captchaCanvas {
    margin-bottom: 0;
}
}