/* Add any custom styles here */
.form-input:focus {
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

.hover-scale {
    transition: transform 0.2s ease-in-out;
}

.hover-scale:hover {
    transform: scale(1.01);
}

/* Custom checkbox styles */
input[type="checkbox"] {
    appearance: none;
    background-color: #fff;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
    color: #6366f1;
    display: inline-block;
    font-size: 1rem;
    height: 1rem;
    position: relative;
    width: 1rem;
    cursor: pointer;
}

input[type="checkbox"]:checked {
    background-color: #6366f1;
    border-color: #6366f1;
}

input[type="checkbox"]:checked::after {
    content: "✓";
    color: white;
    font-size: 0.75rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
