Files
aiform_dev/frontend/src/pages/ClaimForm.css

52 lines
842 B
CSS
Raw Normal View History

.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;
}
}