/* 登录页样式 */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.login-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-header i {
    font-size: 40px;
    color: #6c63ff;
    margin-bottom: 12px;
    display: block;
}

.login-header h2 {
    font-size: 22px;
    color: #1a1a2e;
    font-weight: 700;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    margin-bottom: 6px;
}

.form-group label i {
    margin-right: 4px;
    color: #6c63ff;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
    border-color: #6c63ff;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

.btn-block {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    margin-top: 8px;
    justify-content: center;
}

.login-tip {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: #ef4444;
}

@media (max-width: 480px) {
    .login-card {
        margin: 16px;
        padding: 28px;
    }
}


/* 安装向导样式 */
.install-step {}

.step-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-title i { color: #6c63ff; }

.check-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    padding: 8px 12px;
    background: #f9fafb;
    border-radius: 6px;
}

.check-item i { font-size: 16px; }
.check-item small { margin-left: auto; }


/* 数据库配置网格 */
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 480px) {
    .form-grid-2 { grid-template-columns: 1fr; }
}
