Initial commit: Базовая структура сайта

This commit is contained in:
2026-02-11 12:06:30 +05:00
parent b41f161e8f
commit d9a2ad7f15
62 changed files with 3901 additions and 0 deletions

31
frontend/src/pages/Login.css Executable file
View File

@@ -0,0 +1,31 @@
.login-container {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.login-card {
background: white;
padding: 40px;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
width: 100%;
max-width: 400px;
}
.login-card h1 {
text-align: center;
color: #2c3e50;
margin-bottom: 10px;
}
.login-card h2 {
text-align: center;
color: #7f8c8d;
font-size: 18px;
font-weight: normal;
margin-bottom: 30px;
}