.captcha {
    background-color: rgba(0, 64, 195, 0.06);
    padding: 4%;
    align-items: center;
}
.captcha p {
    margin-bottom: 0;
}
.captcha .text {
    color: #0040C3;
}
.captcha .number {
    color: #282828;
    padding-left: 1.2rem;
}
.captcha .sum-value {
    background-color: rgba(240, 244, 251, 1);
    height: 30px;
    border: none;
    border-bottom: 1px solid black;
    border-radius: 0;
    text-align: center;
    width: 60px; 
}
.captcha .verify-button {
    color: #0040C3;
    border: 1px solid #0040C3;
    font-weight: 500;
    border-radius: 3px;
    height: 35px;
    transition: all 0.3s;
}
.captcha .verify-button:hover {
    color: white;
    background-color: #0040C3;
    transition: all 0.3s;
}
.captcha .verify-button {
    background-color: #0040C3;
    color: white;
    border: none;
    font-weight: 500;
    border-radius: 3px;
    height: 35px;
    transition: all 0.3s;
}


.captcha-equation {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    color: #282828;
    gap: 10px;
}

.captcha-equation span {
    margin: 0 5px;
}


@media (max-width: 767.98px) {
    .captcha {
        padding: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .captcha .text {
        text-align: center;
        margin-bottom: 10px;
    }

    .captcha .number,
    .captcha .sum-value {
        margin-bottom: 10px;
    }

    .captcha .verify-button {
        width: auto; 
        padding: 10px;
        font-size: 12px;
        margin-top: 10px;
        align-self: center; 
        margin-left: 0;
    }

    .captcha-equation {
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .verify-button {
        width: 100%;
        padding: 10px;
        font-size: 12px;
        margin-top: 10px;
    }
}

/* Define a media query for mobile*/
@media screen and (max-width: 480px) {
    .fs-16 {
        font-size: 12px;
    }
}

/* Define a media query for tablets */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .fs-16 {
        font-size: 12px;
    }
}

/* Define a media query for desktop devices */
@media screen and (min-width: 769px) {

  
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .captcha .verify-button {
        margin-top: -5px; /* Move the button a little bit up */
        margin-left: 12px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .captcha .verify-button {
        margin-top: -5px; /* Move the button a little bit up */
        margin-left: 0; /* Remove the gap between the button and the number */
    }
}

@media (min-width: 1200px) {
    .captcha .verify-button {
        margin-top: -5px; /* Move the button a little bit up */
        margin-left: 5px; /* Reduce the gap between the button and the number */
    }
}

