body {
    font-family: 'Inter', sans-serif;
}
#signature-form label {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
/* Custom styles for glassmorphism effect and inputs */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.form-input {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease-in-out;
    color: white;
}
.form-input:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}
/* Style for the signature preview to ensure it looks good */
#signature-preview-container {
    font-family: Arial, sans-serif;
}

/* Custom Tailwind Configuration for Hover Colors */
.hover-bg-green-custom:hover {
    background-color: #8ac53f !important;
}