🚀 MVP: FastAPI + React форма с SMS верификацией

 Инфраструктура: PostgreSQL, Redis, RabbitMQ, S3
 Backend: SMS сервис + API endpoints
 Frontend: React форма (3 шага) + SMS верификация
This commit is contained in:
AI Assistant
2025-10-24 16:19:58 +03:00
parent 8af23e90fa
commit 0f82eef08d
42 changed files with 2902 additions and 241 deletions

View File

@@ -0,0 +1,51 @@
.claim-form-container {
min-height: 100vh;
padding: 40px 20px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
display: flex;
justify-content: center;
align-items: center;
}
.claim-form-card {
max-width: 800px;
width: 100%;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
border-radius: 12px;
}
.claim-form-card .ant-card-head {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border-radius: 12px 12px 0 0;
}
.claim-form-card .ant-card-head-title {
color: white;
font-size: 24px;
font-weight: 600;
}
.steps {
margin-bottom: 32px;
}
.steps-content {
min-height: 400px;
padding: 20px;
}
@media (max-width: 768px) {
.claim-form-container {
padding: 20px 10px;
}
.claim-form-card {
margin: 0;
}
.steps-content {
padding: 10px;
}
}