﻿
.captcha-container {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping of elements */
    align-items: center;
    gap: 10px;
    background-color: #f5f5f5;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 300px;
    height: 190px;
    font-size: 14px;
    margin-top: 20px;
}

.captcha-box {
    width: 200px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    padding: 10px;
    background: #fff;
    border: 1px solid #aaa;
}

.captcha-buttons {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.captcha-button {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 20px;
    margin-top: -6px;
}

/* Ensure label is on a separate line */
.label-container {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Input and button side by side */
.input-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.captcha-input {
    padding: 5px;
    border: 1px solid #999;
    font-size: 14px;
    width: 150px;
}

.submit-button {
    padding: 5px 10px;
    border: 1px solid #999;
    background: #e0e0e0;
    cursor: pointer;
    font-size: 14px;
}

    .submit-button:hover {
        background: #ccc;
    }

#resultMessage {
    display: block;
    margin-top: 5px;
    font-weight: bold;
    color: red;
}




/*
.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f5f5f5;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 400px;
}

.captcha-box {
    position: relative;
    width: 200px;
    height: 50px;
    background-color: #fff;
    border: 1px solid #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    letter-spacing: 5px;
}

 
.captcha-input {
    width: 80px;
    padding: 5px;
    border: 1px solid #999;
    font-size: 14px;
}

.captcha-buttons {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.captcha-button {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

    .captcha-button img {
        width: 20px;
        height: 20px;
    }

.submit-button {
    margin-top: 5px;
    padding: 5px 10px;
    border: 1px solid #999;
    background: #e0e0e0;
    cursor: pointer;
    font-size: 14px;
}

    .submit-button:hover {
        background: #ccc;
    }

.captcha-input-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

    .captcha-input-container label,
    .captcha-input-container input,
    .captcha-input-container .submit-button {
        margin-bottom: 10px;
    }
*/



