diff --git a/src/App.svelte b/src/App.svelte
index 460e14d..d8989d8 100644
--- a/src/App.svelte
+++ b/src/App.svelte
@@ -14,6 +14,47 @@
src={import.meta.env.VITE_TRACKING_URL}
>
{/if}
+
div > div:first-child {
::-webkit-scrollbar-thumb:hover {
background: none;
}
+
+.apply-form {
+ display: flex;
+ align-items: center;
+ margin-top: 24px;
+ gap: 12px;
+}
+
+.apply-input {
+ padding: 4px 12px;
+ background: transparent;
+ border: 1px solid white;
+}
+
+.apply-submit {
+ padding: 4px 12px;
+ background: transparent;
+ color: white;
+ border: 1px solid white;
+}
diff --git a/src/components/Input.svelte b/src/components/Input.svelte
index d13972b..0a8c8ce 100644
--- a/src/components/Input.svelte
+++ b/src/components/Input.svelte
@@ -1,11 +1,11 @@