/* Style for the CAPTCHA display */
#captcha-display {
    font-weight: bold;
    font-size: 20px;
    background-color: #e0e0e0;
    padding: 8px 15px;
    border-radius: 5px;
    display: inline-block;
    margin-left: 10px;
    color: #333;
}

/* Container for CAPTCHA and refresh button */
.captcha-container {
    display: flex;
    align-items: center; /* Align items vertically centered */
    gap: 10px; /* Add space between the CAPTCHA text and the button */
    margin-bottom: 15px;
}

/* Input field styling */
input[name="captcha"] {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Styling for the Refresh Button */
button#refresh-captcha {
    background-color: transparent;
    color: #007bff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 5px 10px;
}

button#refresh-captcha:hover {
    color: #0056b3;
}

/* Submit button styling */

button[type="submit"]:hover {
    background-color: #0056b3;
}
