/* Form styling */
input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
input[type="url"],
textarea,
select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    /* gray-300 */
    border-radius: 0.375rem;
    /* rounded-md */
    outline: none;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
    border-color: transparent;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
    /* ring-2 ring-blue-500 */
}

input[type="checkbox"] {
    margin-right: 0.5rem;
    border-radius: 0.25rem;
}

input[type="checkbox"]:focus {
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
    /* ring-2 ring-blue-500 */
}

/* Label styling */
label {
    display: block;
    font-size: 0.875rem;
    /* text-sm */
    font-weight: 500;
    /* font-medium */
    color: #374151;
    /* text-gray-700 */
    margin-bottom: 0.25rem;
}

/* Error message styling */
.error-message {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    /* text-sm */
    color: #ef4444;
    /* text-red-500 */
}

/* Help text styling */
.help-text {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    /* text-xs */
    color: #6b7280;
    /* text-gray-500 */
}