## Implementation Context - **Primary**: Use **SenangStart CSS** for the implementation. - **Reference**: Tailwind CSS is provided for stylistic context only. ## SenangStart CSS Usage To use SenangStart CSS, simply include the script in your HTML ``: ```html My App

Hello SenangStart!

Zero config, instant styling.

``` **Documentation**: [Getting Started Guide](https://bookklik-technologies.github.io/senangstart-css/guide/getting-started.html) # Inputs Category: forms Description: Standard Text Inputs ## Small Variant ### SenangStart CSS Code ```html <input type="text" space="h:large-3x p-x:small-3x w:[100%]" visual="border-w:regular border:neutral-200 rounded:medium text-size:small focus:outline:none focus:border:blue-600 transition:colors" class="placeholder-gray-400" placeholder="Input S"> ``` ### Tailwind CSS Code ```html <input type="text" class="h-10 px-3 w-full border-2 border-neutral-200 rounded-lg text-sm focus:outline-none focus:border-blue-600 placeholder-gray-400 transition-colors" placeholder="Input S"> ``` ## Medium Variant ### SenangStart CSS Code ```html <input type="text" space="h:big p-x:small-3x w:[100%]" visual="border-w:regular border:neutral-200 rounded:medium text-size:base focus:outline:none focus:border:blue-600 transition:colors" class="placeholder-gray-400" placeholder="Input M"> ``` ### Tailwind CSS Code ```html <input type="text" class="h-12 px-3 w-full border-2 border-neutral-200 rounded-lg text-base focus:outline-none focus:border-blue-600 placeholder-gray-400 transition-colors" placeholder="Input M"> ``` ## Large Variant ### SenangStart CSS Code ```html <input type="text" space="h:big-2x p-x:small-3x w:[100%]" visual="border-w:regular border:neutral-200 rounded:medium text-size:large focus:outline:none focus:border:blue-600 transition:colors" class="placeholder-gray-400" placeholder="Input L"> ``` ### Tailwind CSS Code ```html <input type="text" class="h-14 px-3 w-full border-2 border-neutral-200 rounded-lg text-lg focus:outline-none focus:border-blue-600 placeholder-gray-400 transition-colors" placeholder="Input L"> ```