/* Copyright (C) 2025 Seekra Group GbR All rights reserved. This file is a part of the Seekra Client Library. */ .input { border: none; padding: 0.5em 1em; } .input::placeholder { color: var(--gray) } .input-rounded { border-radius: 2em; } .fli-form { position: relative; margin: 2rem 0; width: 300px; } .fli { padding: 1rem 0.75rem 0.25rem; font-size: 1rem; border: 1px solid #ccc; border-radius: 4px; background: none; outline: none; } .fli-label { position: absolute; top: 1rem; left: 0.75rem; color: #777; font-size: 1rem; pointer-events: none; transition: 0.2s ease all; background-color: #fff; padding: 0 0.25rem; } .fli:focus + .fli-label, .fli:not(:placeholder-shown) + .fli-label { top: -0.6rem; left: 0.5rem; font-size: 0.8rem; color: #007bff; transform: none; }