@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');

.input-field {
    font-family: 'Inter', system-ui, sans-serif !important;
    border: none;
    border-bottom: 2px solid #a3a3a3;
    border-radius: 0;
    background: transparent;
    outline: none;
    padding: 0.5rem 0.25rem;
    width: 100%;
    transition: border-color 0.2s;
}

.input-field:focus {
    border-bottom-color: #2563eb;
    background: rgba(37, 99, 235, 0.03);
}