First commit

This commit is contained in:
2025-08-16 22:03:31 +03:00
Unverified
commit b561e85419
34 changed files with 3907 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
@use "common/colors" as *;
.auth-container {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
padding: 2rem;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
.auth-card {
background: white;
border-radius: 12px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
width: 100%;
max-width: 450px;
overflow: hidden;
transition: all 0.3s ease;
&:hover {
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
}
.auth-header {
background: linear-gradient(135deg, $primary, $primary-dark);
color: white;
padding: 1.5rem;
text-align: center;
h2 {
font-size: 1.8rem;
margin-bottom: 0.5rem;
}
}
.auth-body {
padding: 2rem;
}
}