feat: implement core backend API structure and frontend service layer for case management and authentication

This commit is contained in:
2026-05-12 15:41:57 +03:00
parent ee39a3d83b
commit bd73f18d5c
13 changed files with 718 additions and 63 deletions

View File

@@ -241,3 +241,31 @@ label textarea {
background: rgba(0,0,0,0.2);
color: #fff;
}
.auth-box {
max-width: 400px;
margin: 4rem auto;
padding: 2rem;
background: var(--color-surface);
border-radius: var(--radius);
border: 1px solid hsla(0,0%,100%,0.1);
box-shadow: var(--shadow);
}
.auth-box input {
width: 100%;
padding: 0.75rem;
margin-top: 0.5rem;
border: 1px solid hsla(0,0%,100%,0.1);
border-radius: var(--radius);
background: rgba(0,0,0,0.2);
color: #fff;
}
.auth-box a {
color: var(--color-primary);
text-decoration: none;
}
.auth-box a:hover {
text-decoration: underline;
}