19 lines
382 B
CSS
19 lines
382 B
CSS
.forgot-password-container {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
}
|
|
|
|
.forgot-password-card {
|
|
width: 400px;
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
.forgot-password-card .ant-card-head-title {
|
|
text-align: center;
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
}
|