.form-style form input, form textarea, form select {
    width: 100%;
    padding: 0.5rem;
    border: 2px solid #bcbcbc;
    border-radius: 0.375rem;
    background-color: #f3f4f6; /* abu-abu terang (Tailwind gray-100) */
}
.form-style 
form input:focus, 
form textarea:focus, 
form select:focus {
    outline: none;
    border-color: #2563eb;      
    box-shadow: 0 0 0 3px #2563eb;      
}

.form-style input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    padding: 0;
    border: 2px solid #d1d5db;
    border-radius: 0.375rem;
    background-color: #5a6374;
    cursor: pointer;
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-style input[type="checkbox"]:checked {
    background-color: #2563eb; 
    border-color: #2563eb; 
}

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

.form-style input[type="checkbox"]:focus {
    outline: none;
    border-color: #5a6374;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}
