@charset "utf-8";
 	
		 .captcha-section {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }


        img#captchaImage {
            display: flex;
            margin-bottom: 10px;
            border: 1px solid #ccc;
			border-radius: 20px; /* ✅ Rounded corners added */
        }

        button {
            background: #007BFF;
            color: white;
            border: none;
            padding: 8px 12px;
            border-radius: 40px;
            cursor: pointer;
            font-size: 14px;
        }

        button:hover {
            background: #28a745;
        }
		

		.captcha-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 50px auto;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.captcha-wrapper label {
    font-size: 16px;
    margin-bottom: 10px;
}

.captcha-wrapper input[type="text"] {
    width: 40%;
    padding: 5px;
    font-size: 16px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.captcha-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.captcha-section img {
    border-radius: 8px;
    height: 60px;
}

.captcha-section button {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

#captcha-error-box {
    color: red;
    font-weight: bold;
    margin-top: 10px;
}

.field-label {
    color: gray;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.field-value {
    font-size: 16px;
    color: #000;
}

