feat:improved ui for login

This commit is contained in:
2025-09-28 15:02:54 +02:00
parent 925e7163b6
commit bc8a76b9f5
9 changed files with 306 additions and 39 deletions

View File

@@ -0,0 +1,43 @@
@font-face {
font-family: 'Washington';
src: url('/fonts/Washington.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.5;
background-color: #f8f8f8;
color: #333;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Washington', serif;
font-weight: normal;
}
button {
cursor: pointer;
font-family: inherit;
}
input {
font-family: inherit;
}
a {
color: inherit;
text-decoration: none;
}