/* html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
} */

.login-container {
    background: #f0f2f5;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 
                0 6px 16px 0 rgba(0, 0, 0, 0.08), 
                0 9px 28px 8px rgba(0, 0, 0, 0.05);
    background: white;
    padding: 24px;
    margin: 0 auto;
}

.login-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.login-header .ant-avatar {
    margin-bottom: 16px;
}

.login-title {
    font-size: 18px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.85);
    margin-top: 16px;
}

.login-form-item {
    margin-bottom: 16px;
}

.login-btn {
    width: 100%;
    height: 40px;
    font-size: 16px;
}

.login-footer {
    margin-top: 24px;
    text-align: center;
    color: rgba(0, 0, 0, 0.45);
    font-size: 14px;
}

.login-link {
    color: #1890ff;
    text-decoration: none;
    transition: color 0.3s;
}

.login-link:hover {
    color: #40a9ff;
    text-decoration: underline;
}


.ant-modal {
    width: auto !important;
    max-width: 65vw;
    top: 7vh;
    
}

.ant-modal-content {
    width: auto !important;
}

/* 中等屏幕（992px以下） */
@media (max-width: 992px) {
    .ant-modal {
        max-width: 75vw;
    }
}

/* 平板设备（768px以下） */
@media (max-width: 768px) {
    .ant-modal {
        max-width: 85vw;
    }
}

/* 移动设备（576px以下） */
@media (max-width: 576px) {
    .ant-modal {
        max-width: 95vw;
        top: 2vh;
    }
}