Form elements styled beautifully by default - no classes needed for basic inputs!
Standard form elements are automatically styled with focus effects.
<label for="email">Email</label>
<input type="email" id="email" placeholder="you@example.com">
Add role="switch" to any checkbox for a beautiful toggle.
<label>
<input type="checkbox" role="switch">
<span>Dark Mode</span>
</label>
Textareas are styled automatically.
<label for="message">Message</label>
<textarea id="message" placeholder="Type here..."></textarea>
Native checkboxes and radios styled automatically.
<label>
<input type="checkbox" checked> Option
</label>
<label>
<input type="radio" name="group"> Choice
</label>
Native select elements styled automatically.
<label for="select">Choose</label>
<select id="select">
<option>Option 1</option>
<option>Option 2</option>
</select>
Use .input-floating for labels that float on focus.
<div class="input-floating">
<input type="text" id="name" placeholder=" ">
<label for="name">Name</label>
</div>
Use .input-with-icon for inputs with icon prefix.
<div class="input-with-icon">
<input type="text" placeholder="Search...">
<span class="input-icon">🔍</span>
</div>