feat: test

This commit is contained in:
2026-01-20 13:11:20 +00:00
parent 9180187748
commit f64ac403fd
35 changed files with 10338 additions and 343 deletions

122
src/app/login/login.scss Normal file
View File

@@ -0,0 +1,122 @@
.login-wrapper {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #f8fafc;
font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.login-card {
background: #ffffff;
padding: 3rem;
border-radius: 1rem;
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
width: 100%;
max-width: 440px;
border: 1px solid #e2e8f0;
.brand {
text-align: center;
margin-bottom: 2rem;
.logo-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 48px;
height: 48px;
background-color: #2563eb;
color: white;
font-weight: 800;
font-size: 1.5rem;
border-radius: 0.75rem;
margin-bottom: 1rem;
}
h1 {
font-size: 1.5rem;
font-weight: 700;
color: #1e293b;
margin: 0;
letter-spacing: -0.025em;
}
}
.subtitle {
text-align: center;
color: #64748b;
margin-bottom: 2.5rem;
font-size: 0.9375rem;
}
}
.login-form {
.form-group {
margin-bottom: 1.5rem;
label {
display: block;
font-size: 0.875rem;
font-weight: 500;
color: #475569;
margin-bottom: 0.5rem;
}
input {
width: 100%;
padding: 0.75rem 1rem;
border: 1px solid #e2e8f0;
border-radius: 0.5rem;
font-size: 1rem;
transition: border-color 0.2s, box-shadow 0.2s;
outline: none;
&:focus {
border-color: #2563eb;
box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
&::placeholder {
color: #94a3b8;
}
}
}
.form-actions {
margin-top: 2rem;
}
.btn-primary {
width: 100%;
padding: 0.75rem 1.5rem;
background-color: #2563eb;
color: white;
font-weight: 600;
border-radius: 0.5rem;
border: none;
cursor: pointer;
transition: background-color 0.2s;
&:hover {
background-color: #1d4ed8;
}
}
}
.footer {
margin-top: 2.5rem;
text-align: center;
font-size: 0.875rem;
color: #64748b;
a {
color: #2563eb;
text-decoration: none;
font-weight: 500;
&:hover {
text-decoration: underline;
}
}
}