.captchaForm {
    max-width: 400px;
    margin: 10px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-family: "Montserrat", sans-serif;
}

.captcha {
    text-align: center;
    margin-bottom: 20px;
    font-size: larger;
    letter-spacing: 4px;
    font-family: 'Courier New', Courier, monospace;
}

.captchaForm label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.captchaForm input[type="text"],
.captchaForm input[type="email"],
.captchaForm textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}

.captcha-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.captcha-image {
    height: 50px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.captchaInput {
    width: 58%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-top: 20px;
}

.refresh {
    width: 20%;
    padding: 8px;
    background-color: #F3E06C;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.captchaForm button:hover {
    background-color: #0056b3;
}


