﻿/*.reviewCaptchaImg {
    width: 32%;
}*/

.reviewCaptchaNotice {
    font-size: 0.75rem;
}

.captcha-container {
    display: flex;
    align-items: flex-start; /* Align items at the top */
    margin-bottom: 1rem; /* Add spacing if needed */
}

    .captcha-container input[type="text"] {
        /* Adjust the input field as needed */
        margin-right: 1rem; /* Space between input and image */
        flex: 1; /* Allow the input to take available space */
        padding: 0.5rem; /* Adjust padding for better appearance */
        font-size: 1rem; /* Adjust font size */
    }

.captcha-image-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the image and link horizontally */
}

    .captcha-image-container img {
        max-width: 6.25rem;
        height: auto;
        cursor: pointer;
        margin-bottom: 0.5rem; /* Space between image and link */
    }

    .captcha-image-container a {
        font-size: 0.9rem; /* Adjust font size if needed */
        text-decoration: none;
        color: #007bff; /* Link color */
        cursor: pointer;
    }

        .captcha-image-container a:hover {
            text-decoration: underline;
        }
