2025-10-24 16:19:58 +03:00
|
|
|
.claim-form-container {
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
padding: 40px 20px;
|
2025-11-19 18:46:48 +03:00
|
|
|
background: #ffffff;
|
2025-10-24 16:19:58 +03:00
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.claim-form-card {
|
|
|
|
|
max-width: 800px;
|
|
|
|
|
width: 100%;
|
2025-11-19 18:46:48 +03:00
|
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
border: 1px solid #d9d9d9;
|
2025-10-24 16:19:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.claim-form-card .ant-card-head {
|
2025-11-19 18:46:48 +03:00
|
|
|
background: #fafafa;
|
|
|
|
|
color: #000000;
|
|
|
|
|
border-bottom: 1px solid #d9d9d9;
|
|
|
|
|
border-radius: 8px 8px 0 0;
|
2025-10-24 16:19:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.claim-form-card .ant-card-head-title {
|
2025-11-19 18:46:48 +03:00
|
|
|
color: #000000;
|
2025-10-24 16:19:58 +03:00
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|