
.form-containers {
    /* background: #fff; */
    margin-left: 300px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 700px;
}
.form-group {
    margin-bottom: 4px;
}
.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #1d1c1c;
    border-radius: 5px;
    font-size: 16px;
}

textarea.form-input {
    height: 100px;
    resize: none;
}

.captcha-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.captcha-text {
    font-size: 20px;
    font-weight: bold;
    background: #05b7f3;
    padding: 10px;
    border-radius: 5px;
    user-select: none;
}

.refresh-captcha {
    margin-left: 10px;
    font-size: 20px;
    /* Adjust the font size */
    width: 40px;
    /* Set a fixed width */
    height: 40px;
    /* Set a fixed height */
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 50%;
    /* Makes it circular */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center the icon inside */
    cursor: pointer;
    padding: 0;
    /* Remove extra padding for consistency */
    transition: transform 0.2s;
    /* Add smooth scaling animation */
}

.refresh-captcha:hover {
    background: #0056b3;
}

.error-message {
    color: red;
    font-size: 14px;
    display: none;
}

.status-message {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
}

.submit-button {
    width: 100%;
    padding: 10px;
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.submit-button:hover {
    background: #218838;
}
@media (max-width: 770px){
    .form-containers {
        margin-left: 0px;
    }
}
@media (max-width: 480px) {
    .captcha-text {
        font-size: 16px;
    }
}