.captcha-form-wrapper {
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.captcha-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 1px 1px 11px 0px rgba(220,220,220,0.75);
    width: 350px;
}

.captcha-question {
    padding: 0px 28px;
    font-size: 3rem;
}

#id_captcha_0:hover {
    outline: none !important;
    border: 1px solid #dcdcdc;
    box-shadow: none;
}

#id_captcha_0 {
    border: 1px solid transparent;
    background-color: #f2f2f2;
    border-radius: 20px;
    font-size: 1.2rem;
    text-align: center;
    margin-top: 3px;
    padding: 15px;
    width: 100%;
}

.buttons-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.btn {
    padding: 8px 16px;
}

.captcha-label {
    font-size: 1.2rem;
    text-align: center;
}