/**********************************/
/* Please ❤ this if you like it! */
/**********************************/

canvas {
      max-width: 100%;
    }
/* Form Container */
#captcha-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.2s ease-in-out;
}
#captcha-form:hover {
    transform: translateY(-3px);
}

/* Labels */
#captcha-form .form-label {
    font-weight: 600;
    color: #495057;
}

/* Inputs & Textarea */
#captcha-form .form-control {
    border-radius: 10px;
    border: 1px solid #ced4da;
    padding: 12px 15px;
    font-size: 1rem;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
#captcha-form .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 6px rgba(13, 110, 253, 0.4);
}

/* Textarea Height */
#captcha-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Captcha Section */
#captcha-form canvas {
    border-radius: 10px;
    border: 1px solid #dee2e6;
    background: #f8f9fa;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.05);
    margin-right: 10px;
}
#captcha-form #refresh-captcha {
    border-radius: 10px;
    padding: 12px 18px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    transition: all 0.2s ease-in-out;
}
#captcha-form #refresh-captcha:hover {
    background: #495057;
    color: #fff;
}

/* Submit Button */
#captcha-form button[type="submit"] {
    border-radius: 10px;
    padding: 12px 20px;
    font-weight: 600;
    box-shadow: 0 5px 12px rgba(13, 110, 253, 0.3);
    transition: all 0.2s ease-in-out;
}
#captcha-form button[type="submit"]:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}
#refresh-captcha{
    margin-bottom: 20px !important;
}